예제 #1
0
파일: Atom.cs 프로젝트: trompa/jungerl
 /*
  * Create an atom from a stream containing an atom encoded in Erlang
  * external format.
  *
  * @param buf the stream containing the encoded atom.
  *
  * @exception DecodeException if the buffer does not
  * contain a valid external representation of an Erlang atom.
  **/
 public Atom(OtpInputStream buf)
 {
     this.atom = buf.read_atom();
 }
예제 #2
0
파일: Atom.cs 프로젝트: e42s/jungerl
 /*
 * Create an atom from a stream containing an atom encoded in Erlang
 * external format.
 *
 * @param buf the stream containing the encoded atom.
 *
 * @exception DecodeException if the buffer does not
 * contain a valid external representation of an Erlang atom.
 **/
 public Atom(OtpInputStream buf)
 {
     this.atom = buf.read_atom();
 }