Page Summary
-
Payload.Type is an abstract interface implementing Annotation.
-
It defines constants for different types of payloads: BYTES, FILE, and STREAM.
-
BYTES represents a single byte array payload.
-
FILE represents a file payload on the device.
-
STREAM represents a real-time stream of data.
The type of this payload.
Constant Summary
| int | BYTES | A Payload consisting of a single byte array. |
| int | FILE | A Payload representing a file on the device. |
| int | STREAM | A Payload representing a real-time stream of data; e.g. |
Inherited Method Summary
Constants
public static final int BYTES
A Payload consisting of a single byte array.
public static final int FILE
A Payload representing a file on the device.
public static final int STREAM
A Payload representing a real-time stream of data; e.g. generated data for which the total size is not known ahead of time.