コード例 #1
0
 public ZmqTransport(IZmqTransportConfiguration configuration, ZmqSocketOptions socketOptions, IZmqOutboundSocketErrorHandler errorHandler)
 {
     _configuration             = configuration;
     _errorHandler              = errorHandler;
     _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint);
     SocketOptions              = socketOptions;
 }
コード例 #2
0
 public ZmqTransport(IZmqTransportConfiguration configuration, IZmqSocketOptions socketOptions)
 {
     _configuration             = configuration;
     _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint);
     SocketOptions = socketOptions;
 }
コード例 #3
0
ファイル: ZmqTransportTests.cs プロジェクト: pascally/Zebus
 public CapturingIsListeningTimeZmqTransport(IZmqTransportConfiguration configuration, Stopwatch stopwatch) : base(configuration, new ZmqSocketOptions())
 {
     _stopwatch = stopwatch;
     IsListeningSwitchTimestamp = TimeSpan.MaxValue;
 }
コード例 #4
0
ファイル: ZmqTransportTests.cs プロジェクト: Julion/Zebus
 public CapturingIsListeningTimeZmqTransport(IZmqTransportConfiguration configuration, Stopwatch stopwatch)
     : base(configuration, new ZmqSocketOptions())
 {
     _stopwatch = stopwatch;
     IsListeningSwitchTimestamp = TimeSpan.MaxValue;
 }