本文整理匯總了Java中com.amazonaws.services.iotdata.model.UpdateThingShadowResult類的典型用法代碼示例。如果您正苦於以下問題:Java UpdateThingShadowResult類的具體用法?Java UpdateThingShadowResult怎麽用?Java UpdateThingShadowResult使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
UpdateThingShadowResult類屬於com.amazonaws.services.iotdata.model包,在下文中一共展示了UpdateThingShadowResult類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: doInBackground
import com.amazonaws.services.iotdata.model.UpdateThingShadowResult; //導入依賴的package包/類
@Override
protected AsyncTaskResult<String> doInBackground(final Void... voids) {
try {
UpdateThingShadowRequest request = new UpdateThingShadowRequest();
request.setThingName(thingName);
ByteBuffer payloadBuffer = ByteBuffer.wrap(updateState.getBytes());
request.setPayload(payloadBuffer);
UpdateThingShadowResult result = mIotDataClient.updateThingShadow(request);
byte[] bytes = new byte[result.getPayload().remaining()];
result.getPayload().get(bytes);
String resultString = new String(bytes);
mLatch.countDown();
return new AsyncTaskResult<>(resultString);
} catch (Exception e) {
if (DEBUG) {
Log.e(TAG, "Error on UpdateShadowTask", e);
}
mLatch.countDown();
return new AsyncTaskResult<>(e);
}
}
示例2: doInBackground
import com.amazonaws.services.iotdata.model.UpdateThingShadowResult; //導入依賴的package包/類
@Override
protected AsyncTaskResult<String> doInBackground(Void... voids) {
try {
UpdateThingShadowRequest request = new UpdateThingShadowRequest();
request.setThingName(thingName);
ByteBuffer payloadBuffer = ByteBuffer.wrap(updateState.getBytes());
request.setPayload(payloadBuffer);
UpdateThingShadowResult result = iotDataClient.updateThingShadow(request);
byte[] bytes = new byte[result.getPayload().remaining()];
result.getPayload().get(bytes);
String resultString = new String(bytes);
return new AsyncTaskResult<String>(resultString);
} catch (Exception e) {
Log.e(UpdateShadowTask.class.getCanonicalName(), "updateShadowTask", e);
return new AsyncTaskResult<String>(e);
}
}