blob: a6be7d939a7900355122afc25e67c924236c8077 [file] [log] [blame]
package org.apache.helix.participant;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import org.apache.helix.messaging.handling.MessageHandlerFactory;
import org.apache.helix.messaging.handling.MultiTypeMessageHandlerFactory;
import org.apache.helix.participant.statemachine.StateModel;
import org.apache.helix.participant.statemachine.StateModelFactory;
/**
* Helix participant manager uses this class to register/remove state model factory
* State model factory creates state model that handles state transition messages
*/
public interface StateMachineEngine extends MultiTypeMessageHandlerFactory {
/**
* Register a default state model factory for a state model definition
* A state model definition could be, for example:
* "MasterSlave", "OnlineOffline", "LeaderStandby", etc.
* @param stateModelDef
* @param factory
* @return
*/
public boolean registerStateModelFactory(String stateModelDef,
StateModelFactory<? extends StateModel> factory);
/**
* Register a state model factory with a name for a state model definition
* @param stateModelDef
* @param factory
* @param factoryName
* @return
*/
public boolean registerStateModelFactory(String stateModelDef,
StateModelFactory<? extends StateModel> factory, String factoryName);
/**
* Remove the default state model factory for a state model definition
* @param stateModelDef
* @param factory
* @return
*/
public boolean removeStateModelFactory(String stateModelDef,
StateModelFactory<? extends StateModel> factory);
/**
* Remove the state model factory with a name for a state model definition
* @param stateModelDef
* @param factory
* @param factoryName
* @return
*/
public boolean removeStateModelFactory(String stateModelDef,
StateModelFactory<? extends StateModel> factory, String factoryName);
/**
* Get a default state model factory for a state model definition.
* @param stateModelName
* @return
*/
public StateModelFactory<? extends StateModel> getStateModelFactory(String stateModelName);
/**
* Get a default state model factory for a state model definition.
* @param stateModelName
* @param factoryName
* @return
*/
public StateModelFactory<? extends StateModel> getStateModelFactory(String stateModelName,
String factoryName);
}