Beispiel #1
0
 public HandledMessageInfoSubscriber(IDataBackplaneClient dataBackplane, ReadOnlySettings settings, TimeSpan sweepPeriod, TimeSpan heartbeatTimeout)
 {
     this.dataBackplane    = dataBackplane;
     this.settings         = settings;
     this.sweepPeriod      = sweepPeriod;
     this.heartbeatTimeout = heartbeatTimeout;
 }
 public HandledMessageInfoSubscriber(IDataBackplaneClient dataBackplane, ReadOnlySettings settings, TimeSpan sweepPeriod, TimeSpan heartbeatTimeout)
 {
     this.dataBackplane = dataBackplane;
     this.settings = settings;
     this.sweepPeriod = sweepPeriod;
     this.heartbeatTimeout = heartbeatTimeout;
 }
 public HandledMessageInfoPublisher(
     IDataBackplaneClient dataBackplane, 
     IReadOnlyCollection<Type> hanledMessageTypes,
     ReadOnlySettings settings, 
     TimeSpan heartbeatPeriod)
 {
     this.dataBackplane = dataBackplane;
     this.hanledMessageTypes = hanledMessageTypes;
     this.settings = settings;
     this.heartbeatPeriod = heartbeatPeriod;
 }
Beispiel #4
0
 public HandledMessageInfoPublisher(
     IDataBackplaneClient dataBackplane,
     IReadOnlyCollection <Type> hanledMessageTypes,
     ReadOnlySettings settings,
     TimeSpan heartbeatPeriod)
 {
     this.dataBackplane      = dataBackplane;
     this.hanledMessageTypes = hanledMessageTypes;
     this.settings           = settings;
     this.heartbeatPeriod    = heartbeatPeriod;
 }