THRIFT-3026 TMultiplexedProcessor does not have a constructor Client: Haxe Patch: Jens Geyer
This closes #392 Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/624781c1 Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/624781c1 Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/624781c1 Branch: refs/heads/master Commit: 624781c1c4b89dce9f48fa80b841b5cd3d93aebb Parents: 65ee983 Author: Jens Geyer <[email protected]> Authored: Fri Mar 6 02:00:48 2015 +0100 Committer: Jens Geyer <[email protected]> Committed: Fri Mar 6 02:12:29 2015 +0100 ---------------------------------------------------------------------- lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/624781c1/lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx ---------------------------------------------------------------------- diff --git a/lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx b/lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx index a4d8237..9e25fcf 100644 --- a/lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx +++ b/lib/haxe/src/org/apache/thrift/protocol/TMultiplexedProcessor.hx @@ -51,6 +51,9 @@ class TMultiplexedProcessor implements TProcessor private var serviceProcessorMap : StringMap<TProcessor> = new StringMap<TProcessor>(); private var defaultProcessor : TProcessor = null; + public function new() { + } + /** * 'Register' a service with this TMultiplexedProcessor. This allows us to broker * requests to individual services by using the service name to select them at request time.
