write_binary() public method

public write_binary ( byte bin ) : void
bin byte
return void
Exemplo n.º 1
0
 /**
  * Convert this binary to the equivalent Erlang external representation.
  *
  * @param buf
  *                an output stream to which the encoded binary should be
  *                written.
  */
 public override void encode(OtpOutputStream buf)
 {
     buf.write_binary(bin);
 }