IProtocolBuilder

C++
struct IProtocolBuilder {
};
File

INetwork.h

Description

This interface is implemented by CryNetwork, and is used by INetMessageSink::DefineProtocol to find all of the message sinks that should be attached to a channel.

See Also
IProtocolBuilder::~IProtocolBuilder Destructor
C++
virtual ~IProtocolBuilder();
IProtocolBuilder::AddMessageSink Method
C++
virtual void AddMessageSink(INetMessageSink * pSink, const SNetProtocolDef& protocolSending, const SNetProtocolDef& protocolReceiving) = 0;