
io.journalkeeper.coordinating.state.CoordinatingStateHandler Maven / Gradle / Ivy
/**
* 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.journalkeeper.coordinating.state;
import io.journalkeeper.coordinating.state.domain.ReadRequest;
import io.journalkeeper.coordinating.state.domain.ReadResponse;
import io.journalkeeper.coordinating.state.domain.WriteRequest;
import io.journalkeeper.coordinating.state.domain.WriteResponse;
import io.journalkeeper.coordinating.state.store.KVStore;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.Properties;
/**
* CoordinatingStateHandler
* author: gaohaoxiang
*
* date: 2019/6/11
*/
public class CoordinatingStateHandler {
protected static final Logger logger = LoggerFactory.getLogger(CoordinatingStateHandler.class);
private Properties properties;
private KVStore kvStore;
private CoordinatingStateWriteHandler writeHandler;
private CoordinatingStateReadHandler readHandler;
public CoordinatingStateHandler(Properties properties, KVStore kvStore) {
this.properties = properties;
this.kvStore = kvStore;
this.writeHandler = new CoordinatingStateWriteHandler(properties, kvStore);
this.readHandler = new CoordinatingStateReadHandler(properties, kvStore);
}
public WriteResponse handle(WriteRequest request) {
return writeHandler.handle(request);
}
public ReadResponse handle(ReadRequest request) {
return readHandler.handle(request);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy