org.eclipse.californium.core.coap.Request.removeMessageObserver()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(4.7k)|赞(0)|评价(0)|浏览(269)

本文整理了Java中org.eclipse.californium.core.coap.Request.removeMessageObserver方法的一些代码示例,展示了Request.removeMessageObserver的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.removeMessageObserver方法的具体详情如下:
包路径:org.eclipse.californium.core.coap.Request
类名称:Request
方法名:removeMessageObserver

Request.removeMessageObserver介绍

暂无

代码示例

代码示例来源:origin: eclipse/leshan

  1. @Override
  2. public void onResponse(Response coapResponse) {
  3. LOG.debug("Received coap response: {} for {}", coapResponse, coapRequest);
  4. try {
  5. cleaningTask.cancel(false);
  6. responseCallback.onResponse(coapResponse);
  7. } catch (Exception e) {
  8. errorCallback.onError(e);
  9. } finally {
  10. coapRequest.removeMessageObserver(this);
  11. }
  12. }

代码示例来源:origin: eclipse/leshan

  1. public Response waitForCoapResponse() throws InterruptedException {
  2. try {
  3. boolean timeElapsed = false;
  4. timeElapsed = !latch.await(timeout, TimeUnit.MILLISECONDS);
  5. if (timeElapsed || coapTimeout.get()) {
  6. coapRequest.cancel();
  7. }
  8. } finally {
  9. coapRequest.removeMessageObserver(this);
  10. }
  11. if (exception.get() != null) {
  12. coapRequest.cancel();
  13. throw exception.get();
  14. }
  15. return ref.get();
  16. }
  17. }

代码示例来源:origin: org.eclipse.leshan/leshan-client

  1. public OperationResponse waitForResponse() {
  2. try {
  3. final boolean latchTimeout = latch.await(timeout, TimeUnit.MILLISECONDS);
  4. if (!latchTimeout || coapTimeout.get()) {
  5. coapRequest.cancel();
  6. if (exception.get() != null) {
  7. throw exception.get();
  8. } else {
  9. throw new RuntimeException("Request Timed Out: " + coapRequest.getURI() + " (timeout)");
  10. }
  11. }
  12. } catch (final InterruptedException e) {
  13. // no idea why some other thread should have interrupted this thread
  14. // but anyway, go ahead as if the timeout had been reached
  15. LOG.info("Caught an unexpected InterruptedException during execution of CoAP request " + e);
  16. } finally {
  17. coapRequest.removeMessageObserver(this);
  18. }
  19. if (exception.get() != null) {
  20. throw exception.get();
  21. }
  22. return ref.get();
  23. }
  24. }

代码示例来源:origin: org.github.leshan/leshan-client

  1. public OperationResponse waitForResponse() {
  2. try {
  3. final boolean latchTimeout = latch.await(timeout, TimeUnit.MILLISECONDS);
  4. if (!latchTimeout || coapTimeout.get()) {
  5. coapRequest.cancel();
  6. if (exception.get() != null) {
  7. throw exception.get();
  8. } else {
  9. throw new RuntimeException("Request Timed Out: " + coapRequest.getURI() + " (timeout)");
  10. }
  11. }
  12. } catch (final InterruptedException e) {
  13. // no idea why some other thread should have interrupted this thread
  14. // but anyway, go ahead as if the timeout had been reached
  15. LOG.info("Caught an unexpected InterruptedException during execution of CoAP request " + e);
  16. } finally {
  17. coapRequest.removeMessageObserver(this);
  18. }
  19. if (exception.get() != null) {
  20. throw exception.get();
  21. }
  22. return ref.get();
  23. }
  24. }

代码示例来源:origin: org.eclipse.leshan/leshan-server-cf

  1. @Override
  2. public void onResponse(final Response coapResponse) {
  3. LOG.debug("Received coap response: {}", coapResponse);
  4. try {
  5. final T lwM2mResponseT = buildResponse(coapResponse);
  6. if (lwM2mResponseT != null) {
  7. responseCallback.accept(lwM2mResponseT);
  8. }
  9. } catch (final ResourceAccessException e) {
  10. errorCallback.accept(e);
  11. } finally {
  12. coapRequest.removeMessageObserver(this);
  13. }
  14. }

代码示例来源:origin: org.eclipse.leshan/leshan-server-cf

  1. public T waitForResponse() {
  2. try {
  3. final boolean latchTimeout = latch.await(timeout, TimeUnit.MILLISECONDS);
  4. if (!latchTimeout || coapTimeout.get()) {
  5. clientRegistry.deregisterClient(client.getRegistrationId());
  6. coapRequest.cancel();
  7. if (exception.get() != null) {
  8. throw exception.get();
  9. } else {
  10. throw new RequestTimeoutException(coapRequest.getURI(), timeout);
  11. }
  12. }
  13. } catch (final InterruptedException e) {
  14. // no idea why some other thread should have interrupted this thread
  15. // but anyway, go ahead as if the timeout had been reached
  16. LOG.debug("Caught an unexpected InterruptedException during execution of CoAP request", e);
  17. } finally {
  18. coapRequest.removeMessageObserver(this);
  19. }
  20. if (exception.get() != null) {
  21. throw exception.get();
  22. }
  23. return ref.get();
  24. }
  25. }

代码示例来源:origin: org.eclipse.leshan/leshan-client

  1. @Override
  2. public void onResponse(final Response coapResponse) {
  3. try {
  4. final OperationResponse lwM2mResponseT = buildResponse(coapResponse);
  5. if (lwM2mResponseT != null) {
  6. responseCallback.onSuccess(lwM2mResponseT);
  7. }
  8. } catch (final Exception e) {
  9. responseCallback.onFailure(OperationResponse.failure(ResponseCode.INTERNAL_SERVER_ERROR,
  10. e.getLocalizedMessage()));
  11. } finally {
  12. coapRequest.removeMessageObserver(this);
  13. }
  14. }

代码示例来源:origin: org.github.leshan/leshan-client

  1. @Override
  2. public void onResponse(final Response coapResponse) {
  3. try {
  4. final OperationResponse lwM2mResponseT = buildResponse(coapResponse);
  5. if (lwM2mResponseT != null) {
  6. responseCallback.onSuccess(lwM2mResponseT);
  7. }
  8. } catch (final Exception e) {
  9. responseCallback.onFailure(OperationResponse.failure(ResponseCode.INTERNAL_SERVER_ERROR,
  10. e.getLocalizedMessage()));
  11. } finally {
  12. coapRequest.removeMessageObserver(this);
  13. }
  14. }

代码示例来源:origin: org.eclipse.californium/californium-core

  1. request.removeMessageObserver(mo);
  2. refresh.addMessageObserver(mo);

代码示例来源:origin: eclipse/californium

  1. request.removeMessageObserver(mo);
  2. refresh.addMessageObserver(mo);

相关文章