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

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

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

Request.cancel介绍

暂无

代码示例

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

  1. @Override
  2. public void cancel() {
  3. coapRequest.cancel();
  4. }

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

  1. @Override
  2. public void run() {
  3. responseTimedOut.set(true);
  4. coapRequest.cancel();
  5. }
  6. }, timeoutInMs, TimeUnit.MILLISECONDS);

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

  1. /**
  2. * Cancel observer.
  3. */
  4. private void cancel() {
  5. Request request = this.request;
  6. request.cancel();
  7. setCanceled(true);
  8. }

代码示例来源: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.californium/californium-core

  1. /**
  2. * Cancel observer.
  3. */
  4. private void cancel() {
  5. Request request = this.request;
  6. request.cancel();
  7. setCanceled(true);
  8. }

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

  1. @Override
  2. public void receiveRequest(Request received) {
  3. counter.getAndIncrement();
  4. if (cancelRequest) {
  5. request.cancel();
  6. }
  7. }
  8. };

代码示例来源: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-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. 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: eclipse/leshan

  1. @Override
  2. public void cancelPendingRequests(Registration registration) {
  3. Validate.notNull(registration);
  4. String registrationId = registration.getId();
  5. SortedMap<String, Request> requests = pendingRequests.subMap(getFloorKey(registrationId),
  6. getCeilingKey(registrationId));
  7. for (Request coapRequest : requests.values()) {
  8. coapRequest.cancel();
  9. }
  10. requests.clear();
  11. }

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

  1. private CoapResponse synchronous(Request request, Endpoint outEndpoint) {
  2. try {
  3. Response response = send(request, outEndpoint).waitForResponse(getTimeout());
  4. if (response == null) {
  5. // Cancel request so appropriate clean up can happen.
  6. request.cancel();
  7. return null;
  8. } else {
  9. return new CoapResponse(response);
  10. }
  11. } catch (InterruptedException e) {
  12. throw new RuntimeException(e);
  13. }
  14. }

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

  1. request.cancel(); // stack should send RST

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

  1. request.cancel();

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

  1. exchange.getRequest().cancel();
  2. return;
  3. exchange.getRequest().cancel();
  4. return;

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

  1. request.cancel();
  2. server.sendResponse(ACK, CONTENT).loadBoth("B").block2(1, true, 16).payload(respPayload.substring(16, 32)).go();

相关文章