Exemplo n.º 1
0
        internal RiakClient(IRiakEndPoint endPoint, string seed = null)
        {
            _endPoint = endPoint;

            ClientId = GetClientId(seed);
            Async    = new RiakAsyncClient(this);
        }
Exemplo n.º 2
0
 private RiakClient(IRiakConnection batchConnection, byte[] clientId)
 {
     _batchConnection = batchConnection;
     ClientId         = clientId;
     Async            = new RiakAsyncClient(this);
 }
Exemplo n.º 3
0
 internal RiakClient(IRiakAsyncClient client)
 {
     _client = client;
 }
Exemplo n.º 4
0
 internal RiakClient(IRiakEndPoint endPoint)
 {
     _endPoint = endPoint;
     Async     = new RiakAsyncClient(endPoint);
 }
Exemplo n.º 5
0
 private RiakClient(IRiakConnection batchConnection)
 {
     _batchConnection = batchConnection;
     Async            = new RiakAsyncClient(this);
 }