final String driverIdentity = ConfigUtils.resolveParameter (this.configuration, "interop.driver.identity", String.class, "");
final String driverEndpoint = ConfigUtils.resolveParameter (this.configuration, "interop.driver.endpoint", String.class, "");
this.connectorChannel = ZeroMqChannel.create (UUID.randomUUID ().toString (), this.threading, this.exceptions);
this.driverChannel = ZeroMqChannel.create (driverIdentity, this.threading, this.exceptions);
this.driverChannel.accept (driverEndpoint);
final ChannelFactory channelFactory = new ChannelFactory () {
@SuppressWarnings ("synthetic-access")
@Override
public final Channel create ()
{
return BaseScenario.this.connectorChannel;