Main Page | Class Hierarchy | Data Structures | Directories | File List | Data Fields | Related Pages

__db_join_msg.java

00001 /*
00002  * Automatically generated by jrpcgen 0.95.1 on 8/2/05 1:49 PM
00003  * jrpcgen is part of the "Remote Tea" ONC/RPC package for Java
00004  * See http://acplt.org/ks/remotetea.html for details
00005  */
00006 package com.sleepycat.db.rpcserver;
00007 import org.acplt.oncrpc.*;
00008 import java.io.IOException;
00009 
00010 public class __db_join_msg implements XdrAble {
00011     public int dbpcl_id;
00012     public int [] curs;
00013     public int flags;
00014 
00015     public __db_join_msg() {
00016     }
00017 
00018     public __db_join_msg(XdrDecodingStream xdr)
00019            throws OncRpcException, IOException {
00020         xdrDecode(xdr);
00021     }
00022 
00023     public void xdrEncode(XdrEncodingStream xdr)
00024            throws OncRpcException, IOException {
00025         xdr.xdrEncodeInt(dbpcl_id);
00026         xdr.xdrEncodeIntVector(curs);
00027         xdr.xdrEncodeInt(flags);
00028     }
00029 
00030     public void xdrDecode(XdrDecodingStream xdr)
00031            throws OncRpcException, IOException {
00032         dbpcl_id = xdr.xdrDecodeInt();
00033         curs = xdr.xdrDecodeIntVector();
00034         flags = xdr.xdrDecodeInt();
00035     }
00036 
00037 }
00038 // End of __db_join_msg.java

Generated on Sun Dec 25 12:14:48 2005 for Berkeley DB 4.4.16 by  doxygen 1.4.2