Navigation
API > API/Plugins > API/Plugins/ConcertTransport > API/Plugins/ConcertTransport/IConcertLocalEndpoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RegisterEventHandler
(
typename TConcertFunctionEventHandler::FFuncType Func |
Register an handler for event received by this endpoint | IConcertEndpoint.h | |
void RegisterEventHandler
(
HandlerType* Handler, |
Register an handler for event received by this endpoint | IConcertEndpoint.h |
RegisterEventHandler(typename TConcertFunctionEventHandler::FFuncType)
Description
Register an handler for event received by this endpoint
| Name | RegisterEventHandler |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertMain/Source/ConcertTransport/Public/IConcertEndpoint.h |
| Include Path | #include "IConcertEndpoint.h" |
template<typename EventType>
void RegisterEventHandler
(
typename TConcertFunctionEventHandler::FFuncType Func
)
Parameters
| Name | Remarks |
|---|---|
| Func | : Function to handle the event of type EventType |
RegisterEventHandler(HandlerType *, typename TConcertRawEventHandler< HandlerType >::FFuncType)
Description
Register an handler for event received by this endpoint
| Name | RegisterEventHandler |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertMain/Source/ConcertTransport/Public/IConcertEndpoint.h |
| Include Path | #include "IConcertEndpoint.h" |
template<typename EventType, typename HandlerType>
void RegisterEventHandler
(
HandlerType * Handler,
typename TConcertRawEventHandler < HandlerType >::FFuncType Func
)
Parameters
| Name | Remarks |
|---|---|
| Handler | : Pointer for the handler |
| Func | : Member function of the Handler to handle the event of type EventType |