本文整理汇总了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);
}
}