blob: 9ecf20e564bd082885bf0550c2fb44cf502f942f [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.
*/
#ifndef _IGNITE_NETWORK_ASYNC_CLIENT_POOL
#define _IGNITE_NETWORK_ASYNC_CLIENT_POOL
#include <stdint.h>
#include <vector>
#include <ignite/ignite_error.h>
#include <ignite/impl/interop/interop_memory.h>
#include <ignite/network/async_handler.h>
#include <ignite/network/data_filter.h>
#include <ignite/network/data_sink.h>
#include <ignite/network/tcp_range.h>
namespace ignite
{
namespace network
{
/**
* Asynchronous client pool.
*/
class IGNITE_IMPORT_EXPORT AsyncClientPool : public DataSink
{
public:
/**
* Destructor.
*/
virtual ~AsyncClientPool()
{
// No-op.
}
/**
* Start internal thread that establishes connections to provided addresses and asynchronously sends and
* receives messages from them. Function returns either when thread is started and first connection is
* established or failure happened.
*
* @param addrs Addresses to connect to.
* @param connLimit Connection upper limit. Zero means limit is disabled.
*
* @throw IgniteError on error.
*/
virtual void Start(const std::vector<TcpRange>& addrs, uint32_t connLimit) = 0;
/**
* Close all established connections and stops handling threads.
*/
virtual void Stop() = 0;
/**
* Set handler.
*
* @param handler Handler to set.
*/
virtual void SetHandler(AsyncHandler *handler) = 0;
};
// Type alias
typedef common::concurrent::SharedPointer<AsyncClientPool> SP_AsyncClientPool;
}
}
#endif //_IGNITE_NETWORK_ASYNC_CLIENT_POOL