Пример #1
0
        public static IEnumerable <Func <CancellationToken, Task> > Tasks(ICommandSender service, IDocumentStore docs,
                                                                          bool isTest)
        {
            var flow = new DomainSender(service);

            // more tasks go here
            yield break;
        }
Пример #2
0
        public static IEnumerable <object> Receptors(ICommandSender service)
        {
            var flow = new DomainSender(service);

            yield return(new ReplicationReceptor(flow));

            yield return(new RegistrationReceptor(flow));
            // more senders go here
        }
Пример #3
0
 public ReplicationPort(DomainSender send)
 {
     _send = send;
 }
Пример #4
0
 public ReplicationReceptor(DomainSender send)
 {
     _send = send;
 }
Пример #5
0
 public RegistrationReceptor(DomainSender flow)
 {
     _flow = flow;
 }
Пример #6
0
 public RegistrationPort(DomainSender flow)
 {
     _flow = flow;
 }
Пример #7
0
 public ReplicationPort(DomainSender send)
 {
     _send = send;
 }
Пример #8
0
 public RegistrationPort(DomainSender flow)
 {
     _flow = flow;
 }
Пример #9
0
 public UserAggregateSecurityReplication(DomainSender send)
 {
     _send = send;
 }
 public RegistrationReceptor(DomainSender flow)
 {
     _flow = flow;
 }
Пример #11
0
 public ReplicationReceptor(DomainSender send)
 {
     _send = send;
 }