示例#1
0
文件: Port.cs 项目: e42s/jungerl
 /*
 * Convert this port to the equivalent Erlang external representation.
 *
 * @param buf an output stream to which the encoded port should be
 * written.
 **/
 public override void encode(OtpOutputStream buf)
 {
     buf.write_port(_node, _id, _creation);
 }
示例#2
0
文件: Port.cs 项目: trompa/jungerl
 /*
  * Convert this port to the equivalent Erlang external representation.
  *
  * @param buf an output stream to which the encoded port should be
  * written.
  **/
 public override void  encode(OtpOutputStream buf)
 {
     buf.write_port(_node, _id, _creation);
 }