コード例 #1
0
 public ReplicationTarget(ReplicationEndpoint endpoint, string logName, string logId, IActorRef log)
 {
     Endpoint = endpoint;
     LogName  = logName;
     LogId    = logId;
     Log      = log;
 }
コード例 #2
0
 public Acceptor(ReplicationEndpoint endpoint)
 {
     this.endpoint = endpoint;
     this.recovery = new Recovery(endpoint);
 }
コード例 #3
0
 public Recovery(ReplicationEndpoint endpoint)
 {
     this.Endpoint = endpoint;
     this.settings = new RecoverySettings(endpoint.System.Settings.Config);
 }
コード例 #4
0
 public SourceConnector(ReplicationEndpoint targetEndpoint, ReplicationConnection connection)
 {
     TargetEndpoint = targetEndpoint;
     Connection     = connection;
     RemoteAcceptor = RemoteActorSelection(Acceptor.Name);
 }