Exemplo n.º 1
0
 public static void Save(IValueSink sink, RecipientProcess value)
 {
     sink.EnterSequence();
     Value<Recipient>.Save(sink, value.Recipient);
     Value<uint>.Save(sink, value.ProcessIdentifier);
     sink.LeaveSequence();
 }
Exemplo n.º 2
0
 public COVSubscription(RecipientProcess recipient, ObjectPropertyReference monitoredPropertyReference, bool issueConfirmedNotifications, uint timeRemaining, Option<float> cOVIncrement)
 {
     this.Recipient = recipient;
     this.MonitoredPropertyReference = monitoredPropertyReference;
     this.IssueConfirmedNotifications = issueConfirmedNotifications;
     this.TimeRemaining = timeRemaining;
     this.COVIncrement = cOVIncrement;
 }
Exemplo n.º 3
0
 public COVSubscription(RecipientProcess recipient, ObjectPropertyReference monitoredPropertyReference, bool issueConfirmedNotifications, uint timeRemaining, Option <float> cOVIncrement)
 {
     this.Recipient = recipient;
     this.MonitoredPropertyReference  = monitoredPropertyReference;
     this.IssueConfirmedNotifications = issueConfirmedNotifications;
     this.TimeRemaining = timeRemaining;
     this.COVIncrement  = cOVIncrement;
 }
Exemplo n.º 4
0
        public static void Save(IValueSink sink, RecipientProcess value)
        {
            sink.EnterSequence();
            Value <Recipient> .Save(sink, value.Recipient);

            Value <uint> .Save(sink, value.ProcessIdentifier);

            sink.LeaveSequence();
        }