Constructor called by the transport layer when it receives binary metadata. Metadata will mutate the passed in array.
(byte[]... binaryValues)
| 118 | * mutate the passed in array. |
| 119 | */ |
| 120 | Metadata(byte[]... binaryValues) { |
| 121 | this(binaryValues.length / 2, binaryValues); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Constructor called by the transport layer when it receives binary metadata. Metadata will |
nothing calls this directly
no outgoing calls
no test coverage detected