Example #1
0
 /// <summary>
 /// Encodes a map and appends the bytes to the buffer.
 /// </summary>
 /// <param name="data">The map.</param>
 /// <param name="buffer">The destination buffer.</param>
 public static void EncodeMap(AmqpMap data, ByteBuffer buffer)
 {
     MapEncoding.Encode(data, buffer);
 }
Example #2
0
 public override void EncodeValue(ByteBuffer buffer)
 {
     MapEncoding.Encode(this.innerMap, buffer);
 }