All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.chronicle.hash.ChronicleHashInstanceConfig Maven / Gradle / Ivy

/*
 * Copyright 2014 Higher Frequency Trading http://www.higherfrequencytrading.com
 *
 * 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 net.openhft.chronicle.hash;

import net.openhft.chronicle.hash.replication.ReplicationChannel;
import net.openhft.chronicle.hash.replication.SingleChronicleHashReplication;
import net.openhft.chronicle.hash.replication.TcpTransportAndNetworkConfig;

import java.io.File;
import java.io.IOException;

public interface ChronicleHashInstanceConfig {

    ChronicleHashInstanceConfig replicated(byte identifier, TcpTransportAndNetworkConfig tcpTransportAndNetwork);

    ChronicleHashInstanceConfig replicated(SingleChronicleHashReplication replication);

    /**
     * Configures replication of the hash containers, created by this builder, via so called
     * "channels". See
     * the
     * section about Channels and ChannelProvider in ChronicleMap manual for more information.
     *
     * 

Another way to establish replication is {@link #replicated(SingleChronicleHashReplication)} method * or it's shortcut: {@link #replicated(byte, TcpTransportAndNetworkConfig)}. * *

By default, hash containers, created by this builder doesn't replicate their data. * *

This method call overrides all previous replication configurations of this builder, made * either by means of this method, {@link #replicated(SingleChronicleHashReplication)} * or {@link #replicated(byte, TcpTransportAndNetworkConfig)} method calls. * * @param channel the channel responsible for gathering updates of hash containers, * created by this builder, and replicating them over network * @return this builder object back * @see #replicated(SingleChronicleHashReplication) */ ChronicleHashInstanceConfig replicatedViaChannel(ReplicationChannel channel); ChronicleHashInstanceConfig persistedTo(File file); ChronicleHashInstanceConfig name(String name); C create() throws IOException; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy