void SetCurrentCorrelationId(MessagePayload toInput)
 {
     if (!toInput.HasCorrelationId()) return;
     correlationLookup.SetCurrentCorrelationId(toInput.GetCorrelationId());
 }
 bool TryCorrelate(MessagePayload toInput)
 {
     return this.lookup.TryCorrelate(toInput.GetCorrelationId());
 }
 void RegisterCorrelationInLookup(MessagePayload toInput)
 {
     lookup.RegisterCorrelationStarted(toInput.GetCorrelationId());
 }