/* * Automatically generated by jrpcgen 0.95.1 on 12/18/01 7:23 PM * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java * See http://acplt.org/ks/remotetea.html for details */packagecom.sleepycat.db.rpcserver;importorg.acplt.oncrpc.*;importjava.io.IOException;publicclass__db_truncate_replyimplementsXdrAble{publicintstatus;publicintcount;public__db_truncate_reply(){}public__db_truncate_reply(XdrDecodingStreamxdr)throwsOncRpcException,IOException{xdrDecode(xdr);}publicvoidxdrEncode(XdrEncodingStreamxdr)throwsOncRpcException,IOException{xdr.xdrEncodeInt(status);xdr.xdrEncodeInt(count);}publicvoidxdrDecode(XdrDecodingStreamxdr)throwsOncRpcException,IOException{status=xdr.xdrDecodeInt();count=xdr.xdrDecodeInt();}}// End of __db_truncate_reply.java