blob: f368c6e303d4f4dcc8e91a7b79e4ae47f71d0367 [file] [log] [blame]
/*
* 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.
*/
/**
* @file
* Declares ignite::Ignition class.
*/
#ifndef _IGNITE_IGNITION
#define _IGNITE_IGNITION
#include <ignite/ignite_error.h>
#include "ignite/ignite.h"
#include "ignite/ignite_configuration.h"
namespace ignite
{
/**
* This class defines a factory for the main %Ignite API.
*/
class IGNITE_IMPORT_EXPORT Ignition
{
public:
/**
* Start Ignite instance.
*
* @param cfg Configuration.
* @return Ignite instance.
*/
static Ignite Start(const IgniteConfiguration& cfg);
/**
* Start Ignite instance.
*
* @param cfg Configuration.
* @param err Error.
* @return Ignite instance.
*/
static Ignite Start(const IgniteConfiguration& cfg, IgniteError& err);
/**
* Start Ignite instance with specific name.
*
* @param cfg Configuration.
* @param name Ignite name.
* @return Ignite instance.
*/
static Ignite Start(const IgniteConfiguration& cfg, const char* name);
/**
* Start Ignite instance with specific name.
*
* @param cfg Configuration.
* @param name Ignite name.
* @param err Error.
* @return Ignite instance.
*/
static Ignite Start(const IgniteConfiguration& cfg, const char* name, IgniteError& err);
/**
* Get default Ignite instance.
*
* @return Default Ignite instance.
*/
static Ignite Get();
/**
* Get default Ignite instance.
*
* @param err Error.
* @return Default Ignite instance.
*/
static Ignite Get(IgniteError& err);
/**
* Get Ignite instance with the given name.
*
* @param name Ignite name.
* @return Ignite instance.
*/
static Ignite Get(const char* name);
/**
* Get Ignite instance with the given name.
*
* @param name Ignite name.
* @param err Error.
* @return Ignite instance.
*/
static Ignite Get(const char* name, IgniteError& err);
/**
* Stop default Ignite instance.
*
* @param cancel Cancel flag.
* @return True if default Ignite instance was stopped by this call.
*/
static bool Stop(bool cancel);
/**
* Stop default Ignite instance.
*
* @param cancel Cancel flag.
* @param err Error.
* @return True if Ignite instance was stopped by this call.
*/
static bool Stop(bool cancel, IgniteError& err);
/**
* Stop Ignite instance with the given name.
*
* @param name Ignite name.
* @param cancel Cancel flag.
* @return True if Ignite instance was stopped by this call.
*/
static bool Stop(const char* name, bool cancel);
/**
* Stop Ignite instance with the given name.
*
* @param name Ignite name.
* @param cancel Cancel flag.
* @param err Error.
* @return True if Ignite instance was stopped by this call.
*/
static bool Stop(const char* name, bool cancel, IgniteError& err);
/**
* Stop all running Ignite instances.
*
* @param cancel Cancel flag.
*/
static void StopAll(bool cancel);
/**
* Stop all running Ignite instances.
*
* @param cancel Cancel flag.
* @param err Error.
*/
static void StopAll(bool cancel, IgniteError& err);
};
}
#endif //_IGNITE_IGNITION