bt.StandaloneClientBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bt-core Show documentation
Show all versions of bt-core Show documentation
BitTorrent Client Library (Core)
/*
* Copyright (c) 2016—2017 Andrei Tomashpolskiy and individual contributors.
*
* 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 bt;
import bt.module.BtModuleProvider;
import bt.runtime.BtClient;
import bt.runtime.BtRuntime;
import bt.runtime.BtRuntimeBuilder;
import bt.runtime.Config;
import com.google.inject.Module;
/**
* Builds a standalone client with a private runtime
*
* @since 1.1
*/
public class StandaloneClientBuilder extends TorrentClientBuilder {
private BtRuntimeBuilder runtimeBuilder;
/**
* @since 1.4
*/
protected StandaloneClientBuilder() {
this.runtimeBuilder = BtRuntime.builder();
}
/**
* Set runtime configuration.
*
* @since 1.1
*/
public StandaloneClientBuilder config(Config config) {
runtimeBuilder.config(config);
return this;
}
/**
* Contribute an extra module into the runtime.
*
* @since 1.1
*/
public StandaloneClientBuilder module(Module module) {
runtimeBuilder.module(module);
return this;
}
/**
* Contribute an extra module into the runtime.
*
* @since 1.1
*/
public StandaloneClientBuilder module(Class extends Module> moduleType) {
runtimeBuilder.module(moduleType);
return this;
}
/**
* If this option is set, Bt will use the service loading mechanism
* to load any modules that are available on application's classpath.
*
* To support auto-loading a module should expose {@link BtModuleProvider} provider.
* Auto-loaded modules will be used in default configuration.
*
* @since 1.1
*/
public StandaloneClientBuilder autoLoadModules() {
runtimeBuilder.autoLoadModules();
return this;
}
@Override
public BtClient build() {
runtime(runtimeBuilder.build());
return super.build();
}
}