public ReplicationProcess(IFunctionalFlow flow)
 {
     _flow = flow;
 }
Exemple #2
0
 public static void ToService(this IFunctionalFlow self, IFunctionalCommand cmd)
 {
     self.SendCommandsAsBatch(new ISampleCommand[] { cmd });
 }
Exemple #3
0
 public static void ToUser(this IFunctionalFlow self, ICommand <UserId> cmd)
 {
     self.SendCommandsAsBatch(new[] { cmd });
 }
Exemple #4
0
 public static void ToRegistration(this IFunctionalFlow self, ICommand <RegistrationId> cmd)
 {
     self.SendCommandsAsBatch(new[] { cmd });
 }
Exemple #5
0
 public static void ToSecurity(this IFunctionalFlow self, ICommand <SecurityId> cmd)
 {
     self.SendCommandsAsBatch(new[] { cmd });
 }
Exemple #6
0
 public ReplicationProcess(IFunctionalFlow flow)
 {
     _flow = flow;
 }