encode() публичный абстрактный Метод

public abstract encode ( OtpOutputStream buf ) : void
buf OtpOutputStream
Результат void
Пример #1
0
 /**
  * Write an arbitrary Erlang term to the stream.
  * 
  * @param o
  *            the Erlang term to write.
  */
 public void write_any(OtpErlangObject o)
 {
     // calls one of the above functions, depending on o
     o.encode(this);
 }
Пример #2
0
 /**
  * Write an arbitrary Erlang term to the stream.
  *
  * @param o
  *            the Erlang term to write.
  */
 public void write_any(OtpErlangObject o)
 {
     // calls one of the above functions, depending on o
     o.encode(this);
 }