Package com.basho.riak.client.cap

Examples of com.basho.riak.client.cap.Quorum


    /**
     * @param pr
     * @return
     */
    public BucketPropertiesBuilder pr(Quora pr) {
        this.pr = new Quorum(pr);
        return this;
    }
View Full Code Here


        this.pr = new Quorum(pr);
        return this;
    }

    public BucketPropertiesBuilder pr(int pr) {
        this.pr = new Quorum(pr);
        return this;
    }
View Full Code Here

    /**
     * @param pw
     * @return
     */
    public BucketPropertiesBuilder pw(Quora pw) {
        this.pw = new Quorum(pw);
        return this;
    }
View Full Code Here

        this.pw = new Quorum(pw);
        return this;
    }

    public BucketPropertiesBuilder pw(int pw) {
        this.pw = new Quorum(pw);
        return this;
    }
View Full Code Here

    /**
     * @param r
     * @return
     */
    public BucketPropertiesBuilder r(Quora r) {
        this.r = new Quorum(r);
        return this;
    }
View Full Code Here

        this.r = new Quorum(r);
        return this;
    }

    public BucketPropertiesBuilder r(int r) {
        this.r = new Quorum(r);
        return this;
    }
View Full Code Here

    /**
     * @param w
     * @return
     */
    public BucketPropertiesBuilder w(Quora w) {
        this.w = new Quorum(w);
        return this;
    }
View Full Code Here

        this.w = new Quorum(w);
        return this;
    }

    public BucketPropertiesBuilder w(int w) {
        this.w = new Quorum(w);
        return this;
    }
View Full Code Here

    /**
     * @param rw
     * @return
     */
    public BucketPropertiesBuilder rw(Quora rw) {
        this.rw = new Quorum(rw);
        return this;
    }
View Full Code Here

        this.rw = new Quorum(rw);
        return this;
    }

    public BucketPropertiesBuilder rw(int rw) {
        this.rw = new Quorum(rw);
        return this;
    }
View Full Code Here

TOP

Related Classes of com.basho.riak.client.cap.Quorum

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.