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

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

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

Request.setResponse介绍

[英]Sets the response.

Also notifies waiting threads and invokes this request's registered
[中]设置响应。
还通知等待的线程并调用此请求的已注册线程

代码示例

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

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (exchange == null)
  4. throw new NullPointerException();
  5. if (exchange.getRequest() == null)
  6. throw new NullPointerException();
  7. if (response == null)
  8. throw new NullPointerException();
  9. exchange.getRequest().setResponse(response);
  10. }
  11. }

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

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (exchange == null) throw new NullPointerException();
  4. if (exchange.getRequest() == null) throw new NullPointerException();
  5. if (response == null) throw new NullPointerException();
  6. exchange.getRequest().setResponse(response);
  7. }
  8. }

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

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (response == null) throw new NullPointerException();
  4. if (exchange == null) throw new NullPointerException();
  5. if (exchange.getRequest() == null) throw new NullPointerException();
  6. exchange.getRequest().setResponse(response);
  7. }
  8. }

代码示例来源:origin: com.sitewhere/sitewhere-core

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (response == null) {
  4. throw new NullPointerException("Response must not be null");
  5. } else if (exchange == null) {
  6. throw new NullPointerException("Exchange must not be null");
  7. } else if (exchange.getRequest() == null) {
  8. throw new IllegalArgumentException("Exchange does not contain request");
  9. } else {
  10. exchange.getRequest().setResponse(response);
  11. }
  12. }

代码示例来源:origin: sitewhere/sitewhere

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (response == null) {
  4. throw new RuntimeException("Response must not be null");
  5. } else if (exchange == null) {
  6. throw new RuntimeException("Exchange must not be null");
  7. } else if (exchange.getRequest() == null) {
  8. throw new IllegalArgumentException("Exchange does not contain request");
  9. } else {
  10. exchange.getRequest().setResponse(response);
  11. }
  12. }

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

  1. @Override
  2. public void deliverResponse(Exchange exchange, Response response) {
  3. if (response == null) {
  4. throw new NullPointerException("Response must not be null");
  5. } else if (exchange == null) {
  6. throw new NullPointerException("Exchange must not be null");
  7. } else if (exchange.getRequest() == null) {
  8. throw new IllegalArgumentException("Exchange does not contain request");
  9. } else {
  10. exchange.getRequest().setResponse(response);
  11. }
  12. }
  13. }

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

  1. @Override
  2. public void deliverResponse(final Exchange exchange, final Response response) {
  3. if (response == null) {
  4. throw new NullPointerException();
  5. }
  6. if (exchange == null) {
  7. throw new NullPointerException();
  8. }
  9. if (exchange.getRequest() == null) {
  10. throw new NullPointerException();
  11. }
  12. exchange.getRequest().setResponse(response);
  13. }
  14. }

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

  1. @Override
  2. public void deliverResponse(final Exchange exchange, final Response response) {
  3. if (response == null) {
  4. throw new NullPointerException();
  5. }
  6. if (exchange == null) {
  7. throw new NullPointerException();
  8. }
  9. if (exchange.getRequest() == null) {
  10. throw new NullPointerException();
  11. }
  12. exchange.getRequest().setResponse(response);
  13. }
  14. }

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

  1. @Override
  2. public void sendResponse(Response response) {
  3. // Redirect the response to the HttpStack instead of a normal
  4. // CoAP endpoint.
  5. // TODO: When we change endpoint to be an interface, we can
  6. // redirect the responses a little more elegantly.
  7. try {
  8. request.setResponse(response);
  9. responseProduced(request, response);
  10. httpStack.doSendResponse(request, response);
  11. LOGGER.info("HTTP returned " + response);
  12. } catch (Exception e) {
  13. LOGGER.log(Level.WARNING, "Exception while responding to Http request", e);
  14. }
  15. }
  16. };

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

  1. @Override
  2. public void sendResponse(Response response) {
  3. // Redirect the response to the HttpStack instead of a normal
  4. // CoAP endpoint.
  5. // TODO: When we change endpoint to be an interface, we can
  6. // redirect the responses a little more elegantly.
  7. try {
  8. request.setResponse(response);
  9. responseProduced(request, response);
  10. httpStack.doSendResponse(request, response);
  11. } catch (Exception e) {
  12. LOGGER.log(Level.WARNING, "Exception while responding to Http request", e);
  13. }
  14. }
  15. };

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

  1. boolean processed = preDeliverResponse(exchange, response);
  2. if (!processed) {
  3. exchange.getRequest().setResponse(response);

相关文章