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

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

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

Request.getBytes介绍

暂无

代码示例

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

  1. /**
  2. * Serializes a request and caches the result on the request object to skip future serializations.
  3. * <p>
  4. * NB: The byte array cached in the message is encoded according to the specific serializer implementation's
  5. * supported wire format. Any subsequent invocation of this method with the same request object will therefore
  6. * simply return the cached byte array. This may cause problems when the first invocation was done on a different
  7. * type of serializer than the second.
  8. * <p>
  9. * Clients should use the {@link #getByteArray(Request)} method in order to prevent caching of the resulting
  10. * byte array.
  11. *
  12. * @param request The request to serialize.
  13. * @param outboundCallback The callback to invoke once the message's correlation context
  14. * has been established.
  15. * @return The object containing the serialized request and the callback.
  16. */
  17. public final RawData serializeRequest(final Request request, final MessageCallback outboundCallback) {
  18. if (request.getBytes() == null) {
  19. request.setBytes(getByteArray(request));
  20. }
  21. return RawData.outbound(
  22. request.getBytes(),
  23. new InetSocketAddress(request.getDestination(),
  24. request.getDestinationPort()),
  25. outboundCallback,
  26. false);
  27. }

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

  1. /**
  2. * Serializes the specified request. Message identifier, message code,
  3. * token, options and payload are converted into a byte array and wrapped in
  4. * a {@link RawData} object. The request's destination address and port are
  5. * stored as address and port in the RawData object.
  6. *
  7. * @param request
  8. * the request
  9. * @return the request as raw data
  10. */
  11. public RawData serialize(Request request) {
  12. byte[] bytes = request.getBytes();
  13. if (bytes == null)
  14. bytes = new DataSerializer().serializeRequest(request);
  15. request.setBytes(bytes);
  16. return new RawData(bytes, request.getDestination(), request.getDestinationPort());
  17. }

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

  1. /**
  2. * Verifies that the serializeRequest() method sets the Message's <em>bytes</em> property.
  3. */
  4. @Test
  5. public void testSerializeRequestStoresBytesInMessage() {
  6. // GIVEN a CoAP request
  7. Request req = Request.newGet();
  8. req.setToken(new byte[]{0x00});
  9. req.getOptions().setObserve(0);
  10. req.setDestination(InetAddress.getLoopbackAddress());
  11. // WHEN serializing the request to a RawData object
  12. RawData raw = serializer.serializeRequest(req);
  13. // THEN the serialized byte array is stored in the request's bytes property
  14. assertNotNull(req.getBytes());
  15. assertThat(raw.getBytes(), is(req.getBytes()));
  16. }
  17. }

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

  1. /**
  2. * Verifies that the getByteArray() method does not set the Message's <em>bytes</em> property.
  3. */
  4. @Test
  5. public void testGetByteArrayDoesNotAlterMessage() {
  6. // GIVEN a CoAP request
  7. Request req = Request.newGet();
  8. req.setToken(new byte[]{0x00});
  9. req.getOptions().setObserve(0);
  10. req.setDestination(InetAddress.getLoopbackAddress());
  11. // WHEN serializing the request to a byte array
  12. serializer.getByteArray(req);
  13. // THEN the serialized byte array is not written to the request's bytes property
  14. assertNull(req.getBytes());
  15. }

相关文章