Navigation
API > API/Developer > API/Developer/TargetPlatform > API/Developer/TargetPlatform/Interfaces
References
| Module | TargetPlatform |
| Header | /Engine/Source/Developer/TargetPlatform/Public/Interfaces/ITargetDeviceSocket.h |
| Include | #include "Interfaces/ITargetDeviceSocket.h" |
Syntax
class ITargetDeviceSocket
Remarks
Interface for target device sockets.
This interface provides an abstraction for communicating with processes running on the target.
Destructors
| Type | Name | Description | |
|---|---|---|---|
| Virtual destructor. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Connected () |
Returns true if this socket is actually connected to another peer and is ready to send/receive data. | |
| bool | Receive
(
void* Data, |
Receive data from a connected process on the target device. | |
| bool | Send
(
const void* Data, |
Send data to a connected process on the target device. |