Skip to content

Instantly share code, notes, and snippets.

@daschl
Created January 17, 2019 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daschl/d48c3ad4995ae9ec85f2888e0f2587ac to your computer and use it in GitHub Desktop.
Save daschl/d48c3ad4995ae9ec85f2888e0f2587ac to your computer and use it in GitHub Desktop.
/*
* Copyright (c) 2018 Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.couchbase.client.java;
import com.couchbase.client.core.Core;
import com.couchbase.client.java.env.ClusterEnvironment;
import java.util.function.Function;
import static com.couchbase.client.java.AsyncBucket.DEFAULT_SCOPE;
import static com.couchbase.client.java.AsyncUtils.block;
public class Bucket {
private final AsyncBucket asyncBucket;
private final ReactiveBucket reactiveBucket;
private final Core core;
private final ClusterEnvironment environment;
Bucket(AsyncBucket asyncBucket) {
this.asyncBucket = asyncBucket;
this.reactiveBucket = new ReactiveBucket(asyncBucket);
this.core = asyncBucket.core();
this.environment = asyncBucket.environment();
}
public AsyncBucket async() {
return asyncBucket;
}
public ReactiveBucket reactive() {
return reactiveBucket;
}
public Scope scope(final String name) {
return block(asyncBucket.scope(name)
.thenApply(asyncScope -> new Scope(asyncScope, asyncBucket.name()))
);
}
public Collection defaultCollection() {
return scope(DEFAULT_SCOPE).defaultCollection();
}
public Collection collection(final String name) {
return scope(DEFAULT_SCOPE).collection(name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment