encode() public abstract méthode

public abstract encode ( OtpOutputStream buf ) : void
buf OtpOutputStream
Résultat void
 /**
  * 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);
 }
 /**
  * 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);
 }