Exemplo n.º 1
0
 public TunnelGatewayZeroHop(RouterContext context, TunnelCreatorConfig config) {
   super(context, null, null, null);
   _config = config;
   if (config.isInbound())
     _inDistributor = new InboundMessageDistributor(context, config.getDestination());
   else _outDistributor = new OutboundMessageDistributor(context, 400);
 }