コード例 #1
0
ファイル: ZmqOutboundSocket.cs プロジェクト: zofuthan/Zebus
 public ZmqOutboundSocket(ZmqContext context, PeerId peerId, string endPoint, IZmqSocketOptions options)
 {
     _context = context;
     _peerId  = peerId;
     _options = options;
     EndPoint = endPoint;
 }
コード例 #2
0
ファイル: ZmqOutboundSocket.cs プロジェクト: MarouenK/Zebus
 public ZmqOutboundSocket(ZmqContext context, PeerId peerId, string endPoint, IZmqSocketOptions options)
 {
     _context = context;
     _peerId = peerId;
     _options = options;
     EndPoint = endPoint;
 }
コード例 #3
0
ファイル: ZmqInboundSocket.cs プロジェクト: MarouenK/Zebus
 public ZmqInboundSocket(ZmqContext context, PeerId peerId, ZmqEndPoint originalEndpoint, IZmqSocketOptions options, string environment)
 {
     _context = context;
     _peerId = peerId;
     _originalEndpoint = originalEndpoint;
     _options = options;
     _environment = environment;
 }
コード例 #4
0
ファイル: ZmqInboundSocket.cs プロジェクト: Bourl/Zebus
 public ZmqInboundSocket(ZmqContext context, PeerId peerId, ZmqEndPoint originalEndpoint, IZmqSocketOptions options, string environment)
 {
     _context          = context;
     _peerId           = peerId;
     _originalEndpoint = originalEndpoint;
     _options          = options;
     _environment      = environment;
 }
コード例 #5
0
 public ZmqTransport(IZmqTransportConfiguration configuration, IZmqSocketOptions socketOptions)
 {
     _configuration             = configuration;
     _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint);
     SocketOptions = socketOptions;
 }