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