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);
 }