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

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

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

Request.getResponse介绍

[英]Gets the response or null if none has arrived yet.
[中]获取响应,如果还没有响应,则返回null。

代码示例

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

  1. /**
  2. * Create a key for the cache starting from a request and the
  3. * content-type of the corresponding response.
  4. *
  5. * @param request
  6. * @return
  7. * @throws URISyntaxException
  8. */
  9. private static CacheKey fromContentTypeOption(Request request) throws URISyntaxException {
  10. if (request == null) {
  11. throw new IllegalArgumentException("request == null");
  12. }
  13. Response response = request.getResponse();
  14. if (response == null) {
  15. return fromAcceptOptions(request).get(0);
  16. }
  17. String proxyUri = request.getOptions().getProxyUri();
  18. int mediaType = response.getOptions().getContentFormat();
  19. if (mediaType < 0) {
  20. // content-format option not set, use default
  21. mediaType = MediaTypeRegistry.TEXT_PLAIN;
  22. }
  23. byte[] payload = request.getPayload();
  24. // create the new cacheKey
  25. CacheKey cacheKey = new CacheKey(proxyUri, mediaType, payload);
  26. cacheKey.setResponse(response);
  27. return cacheKey;
  28. }

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

  1. /**
  2. * Create a key for the cache starting from a request and the
  3. * content-type of the corresponding response.
  4. *
  5. * @param request
  6. * @return
  7. * @throws URISyntaxException
  8. */
  9. private static CacheKey fromContentTypeOption(Request request) throws URISyntaxException {
  10. if (request == null) {
  11. throw new IllegalArgumentException("request == null");
  12. }
  13. Response response = request.getResponse();
  14. if (response == null) {
  15. return fromAcceptOptions(request).get(0);
  16. }
  17. String proxyUri = request.getOptions().getProxyUri();
  18. int mediaType = response.getOptions().getContentFormat();
  19. if (mediaType < 0) {
  20. // content-format option not set, use default
  21. mediaType = MediaTypeRegistry.TEXT_PLAIN;
  22. }
  23. byte[] payload = request.getPayload();
  24. // create the new cacheKey
  25. CacheKey cacheKey = new CacheKey(proxyUri, mediaType, payload);
  26. cacheKey.setResponse(response);
  27. return cacheKey;
  28. }

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

  1. response = request.getResponse();

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

  1. /**
  2. * Verifies that incoming responses are not delivered to their originating requests
  3. * if a subclass has already processed the response.
  4. */
  5. @Test
  6. public void testDeliverResponseYieldsToSubclass() {
  7. // GIVEN a message deliverer subclass that processes all incoming responses
  8. ServerMessageDeliverer deliverer = new ServerMessageDeliverer(rootResource) {
  9. @Override
  10. protected boolean preDeliverResponse(Exchange exchange, Response response) {
  11. return true;
  12. }
  13. };
  14. // WHEN a response is received
  15. deliverer.deliverResponse(outboundRequest, incomingResponse);
  16. // THEN the response is not delivered to the request
  17. assertNull(outboundRequest.getRequest().getResponse());
  18. }

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

  1. /**
  2. * Verifies that incoming responses are delivered to their originating requests
  3. * if a subclass has not already processed the response.
  4. */
  5. @Test
  6. public void testDeliverResponseProcessesResponseAfterPreDeliverResponse() {
  7. // GIVEN a message deliverer subclass that adds a custom option to incoming
  8. // responses
  9. ServerMessageDeliverer deliverer = new ServerMessageDeliverer(rootResource) {
  10. @Override
  11. protected boolean preDeliverResponse(Exchange exchange, Response response) {
  12. response.getOptions().addOption(new Option(200));
  13. return false;
  14. }
  15. };
  16. // WHEN a response is received
  17. deliverer.deliverResponse(outboundRequest, incomingResponse);
  18. // THEN the response is delivered to the request
  19. assertNotNull(outboundRequest.getRequest().getResponse());
  20. // and the response contains the custom option
  21. assertTrue(outboundRequest.getRequest().getResponse().getOptions().hasOption(200));
  22. }
  23. }

相关文章