You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.2 KiB
C++
52 lines
2.2 KiB
C++
/*
|
|
* All or portions of this file Copyright (c) Amazon.com, Inc. or its affiliates or
|
|
* its licensors.
|
|
*
|
|
* For complete copyright and license terms please see the LICENSE at the root of this
|
|
* distribution (the "License"). All use of this software is governed by the License,
|
|
* or, if provided, by the license below or the license accompanying this file. Do not
|
|
* remove or modify any license notices. This file is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AzNetworking/ConnectionLayer/IConnection.h>
|
|
|
|
namespace AzNetworking
|
|
{
|
|
//! @class IConnectionSet
|
|
//! @brief interface class for managing a set of connections.
|
|
class IConnectionSet
|
|
{
|
|
public:
|
|
|
|
using ConnectionVisitor = AZStd::function<void(IConnection&)>;
|
|
|
|
virtual ~IConnectionSet() = default;
|
|
|
|
//! Will visit each active connection in the connection set and invoke the provided connection visitor.
|
|
//! @param visitor the visitor to visit each connection with
|
|
virtual void VisitConnections(const ConnectionVisitor& visitor) = 0;
|
|
|
|
//! Deletes a connection from this connection list instance by connection identifier.
|
|
//! @param connectionId connection identifier of the connection to delete
|
|
//! @return boolean true on success
|
|
virtual bool DeleteConnection(ConnectionId connectionId) = 0;
|
|
|
|
//! Retrieves a connection from this connection set by connection identifier.
|
|
//! @param connectionId connection identifier of the connection to retrieve
|
|
//! @return pointer to the requested connection instance on success, nullptr on failure
|
|
virtual IConnection* GetConnection(ConnectionId connectionId) const = 0;
|
|
|
|
//! Returns the next valid connection identifier for this connection list instance.
|
|
//! @return a valid connection identifier to give a new connection instance, or InvalidConnectionId on failure
|
|
virtual ConnectionId GetNextConnectionId() = 0;
|
|
|
|
//! Returns the current total connection count for this connection set
|
|
//! @return the current total connection count for this connection set
|
|
virtual uint32_t GetConnectionCount() const = 0;
|
|
};
|
|
}
|