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