public ZmqTransport(IZmqTransportConfiguration configuration, ZmqSocketOptions socketOptions, IZmqOutboundSocketErrorHandler errorHandler) { _configuration = configuration; _errorHandler = errorHandler; _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint); SocketOptions = socketOptions; }
public ZmqTransport(IZmqTransportConfiguration configuration, IZmqSocketOptions socketOptions) { _configuration = configuration; _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint); SocketOptions = socketOptions; }
public CapturingIsListeningTimeZmqTransport(IZmqTransportConfiguration configuration, Stopwatch stopwatch) : base(configuration, new ZmqSocketOptions()) { _stopwatch = stopwatch; IsListeningSwitchTimestamp = TimeSpan.MaxValue; }