예제 #1
0
 public ReplicationTarget(ReplicationEndpoint endpoint, string logName, string logId, IActorRef log) : this()
 {
     Endpoint = endpoint;
     LogName  = logName;
     LogId    = logId;
     Log      = log;
 }
예제 #2
0
 public SourceConnector(ReplicationEndpoint endpoint, ReplicationConnection connection)
 {
     _endpoint   = endpoint;
     _connection = connection;
 }
예제 #3
0
 public Recovery(ReplicationEndpoint replicationEndpoint)
 {
     ReplicationEndpoint = replicationEndpoint;
     Settings            = RecoverySettings.Create(replicationEndpoint.System);
 }
예제 #4
0
        public Acceptor(ReplicationEndpoint endpoint)
        {
            _endpoint = endpoint;

            Initializing();
        }