Modifier and Type | Method and Description |
---|---|
static ShadowAction |
ShadowAction.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShadowAction[] |
ShadowAction.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
void |
AwsIotClient.subscribeToShadow(ShadowAction action,
ShadowResult result,
AwsIotMessageCallback callback)
Subscribe to a shadow action (GET, UPDATE, DELETE) result ACCEPTED, REJECTED and (DELTA, DOCUMENT for update
only).
|
void |
AwsIotClient.subscribeToShadow(ShadowAction action,
ShadowResult result,
AwsIotMessageCallback callback,
int qos)
Subscribe to a shadow action (GET, UPDATE, DELETE) result ACCEPTED, REJECTED and (DELTA, DOCUMENT for update
only).
|
void |
AwsIotClient.subscribeToShadow(java.lang.String shadowName,
ShadowAction action,
ShadowResult result,
AwsIotMessageCallback callback)
Subscribe to a shadow action (GET, UPDATE, DELETE) result ACCEPTED, REJECTED and (DELTA, DOCUMENT for update
only).
|
void |
AwsIotClient.subscribeToShadow(java.lang.String shadowName,
ShadowAction action,
ShadowResult result,
AwsIotMessageCallback callback,
int qos)
Subscribe to a shadow action (GET, UPDATE, DELETE) result ACCEPTED, REJECTED and (DELTA, DOCUMENT for update
only).
|
void |
AwsIotClient.unsubscribeFromShadow(ShadowAction action,
ShadowResult result)
Unsubscribe from a shadow action.
|
void |
AwsIotClient.unsubscribeFromShadow(java.lang.String shadowName,
ShadowAction action,
ShadowResult result)
Unsubscribe from a shadow action.
|