/* * ToroDB * Copyright © 2014 8Kdata Technology (www.8kdata.com) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.torodb.mongodb.repl.commands; import com.google.inject.AbstractModule; import com.google.inject.Singleton; import com.torodb.mongodb.commands.CommandsExecutorClassifier; import com.torodb.mongodb.commands.ConnectionCommandsExecutor; import com.torodb.mongodb.commands.ExclusiveWriteTransactionImplementations; import com.torodb.mongodb.commands.GeneralTransactionImplementations; import com.torodb.mongodb.commands.WriteTransactionImplementations; /** * */ public class ReplCommandImplementionsModule extends AbstractModule { @Override protected void configure() { bind(CommandsExecutorClassifier.class) .in(Singleton.class); bind(ConnectionCommandsExecutor.class) .in(Singleton.class); bind(GeneralTransactionImplementations.class) .in(Singleton.class); bind(WriteTransactionImplementations.class) .to(ReplWriteTransactionImplementations.class) .in(Singleton.class); bind(ExclusiveWriteTransactionImplementations.class) .to(ReplExclusiveWriteTransactionImplementations.class) .in(Singleton.class); } }