Java Code Examples for org.apache.distributedlog.api.namespace.NamespaceBuilder#newBuilder()

The following examples show how to use org.apache.distributedlog.api.namespace.NamespaceBuilder#newBuilder() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DistributedLogNamespaceBuilder.java    From distributedlog with Apache License 2.0 4 votes vote down vote up
private DistributedLogNamespaceBuilder() {
    this(NamespaceBuilder.newBuilder());
}
 
Example 2
Source File: DLDownloader.java    From incubator-heron with Apache License 2.0 4 votes vote down vote up
public DLDownloader() {
  this(() -> NamespaceBuilder.newBuilder());
}
 
Example 3
Source File: DlogStorage.java    From incubator-heron with Apache License 2.0 4 votes vote down vote up
public DlogStorage() {
  this(() -> NamespaceBuilder.newBuilder());
}
 
Example 4
Source File: DLUploader.java    From incubator-heron with Apache License 2.0 4 votes vote down vote up
public DLUploader() {
  this(() -> NamespaceBuilder.newBuilder(), DLCopier.of());
}