Exemple #1
0
 public ZmqOutboundSocket(ZmqContext context, PeerId peerId, string endPoint, IZmqSocketOptions options)
 {
     _context = context;
     _peerId  = peerId;
     _options = options;
     EndPoint = endPoint;
 }
Exemple #2
0
 public ZmqOutboundSocket(ZmqContext context, PeerId peerId, string endPoint, IZmqSocketOptions options)
 {
     _context = context;
     _peerId = peerId;
     _options = options;
     EndPoint = endPoint;
 }
Exemple #3
0
 public ZmqInboundSocket(ZmqContext context, PeerId peerId, ZmqEndPoint originalEndpoint, IZmqSocketOptions options, string environment)
 {
     _context = context;
     _peerId = peerId;
     _originalEndpoint = originalEndpoint;
     _options = options;
     _environment = environment;
 }
Exemple #4
0
 public ZmqInboundSocket(ZmqContext context, PeerId peerId, ZmqEndPoint originalEndpoint, IZmqSocketOptions options, string environment)
 {
     _context          = context;
     _peerId           = peerId;
     _originalEndpoint = originalEndpoint;
     _options          = options;
     _environment      = environment;
 }
Exemple #5
0
 public ZmqTransport(IZmqTransportConfiguration configuration, IZmqSocketOptions socketOptions)
 {
     _configuration             = configuration;
     _configuredInboundEndPoint = new ZmqEndPoint(configuration.InboundEndPoint);
     SocketOptions = socketOptions;
 }