Package com.basho.riak.client

Examples of com.basho.riak.client.RiakClient


    private RiakClient impl;

    /** Connect to Riak using the given configuration. */
    public static PlainClient getClient(RiakConfig config) {
        return new PlainClient(new RiakClient(config));
    }
View Full Code Here


        return new PlainClient(new RiakClient(config));
    }

    /** Connect to Riak using the given URL. */
    public static PlainClient getClient(String url) {
        return new PlainClient(new RiakClient(url));
    }
View Full Code Here

{
  private RiakRestOperationFactory (final String riakHost, final int riakPort, final String bucket, final String clientId)
  {
    super ();
    final String address = "http://" + riakHost + ":" + riakPort + "/riak";
    this.riakcl = new RiakClient (address);
    this.bucket = bucket;
    this.clientId = clientId;
    this.exceptions = FallbackExceptionTracer.defaultInstance;
  }
View Full Code Here

    private RiakClient impl;

    /** Connect to Riak using the given configuration. */
    public static PlainClient getClient(RiakConfig config) {
        return new PlainClient(new RiakClient(config));
    }
View Full Code Here

        return new PlainClient(new RiakClient(config));
    }

    /** Connect to Riak using the given URL. */
    public static PlainClient getClient(String url) {
        return new PlainClient(new RiakClient(url));
    }
View Full Code Here

    private RiakClient impl;

    /** Connect to Riak using the given configuration. */
    public static PlainClient getClient(RiakConfig config) {
        return new PlainClient(new RiakClient(config));
    }
View Full Code Here

        return new PlainClient(new RiakClient(config));
    }

    /** Connect to Riak using the given URL. */
    public static PlainClient getClient(String url) {
        return new PlainClient(new RiakClient(url));
    }
View Full Code Here

TOP

Related Classes of com.basho.riak.client.RiakClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.