io.activej.launchers.crdt.rpc.CrdtRpcClientLauncher Maven / Gradle / Ivy
/*
* Copyright (C) 2020 ActiveJ LLC.
*
* 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 io.activej.launchers.crdt.rpc;
import io.activej.config.ConfigModule;
import io.activej.inject.Key;
import io.activej.inject.module.Module;
import io.activej.inject.module.ModuleBuilder;
import io.activej.inject.module.Modules;
import io.activej.launcher.Launcher;
import io.activej.service.ServiceGraphModule;
import java.util.List;
public abstract class CrdtRpcClientLauncher extends Launcher {
protected Module getBusinessLogicModule() {
return Module.empty();
}
protected abstract List> getMessageTypes();
@Override
protected final Module getModule() {
return Modules.combine(
ServiceGraphModule.create(),
ConfigModule.create()
.withEffectiveConfigLogger(),
new CrdtRpcClientModule(),
getBusinessLogicModule(),
ModuleBuilder.create()
.bind(new Key>>() {})
.toInstance(getMessageTypes())
.build()
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy