__env_cachesize_msg.java
来自「mysql-5.0.22.tar.gz源码包」· Java 代码 · 共 42 行
JAVA
42 行
/* * 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 */package com.sleepycat.db.rpcserver;import org.acplt.oncrpc.*;import java.io.IOException;public class __env_cachesize_msg implements XdrAble { public int dbenvcl_id; public int gbytes; public int bytes; public int ncache; public __env_cachesize_msg() { } public __env_cachesize_msg(XdrDecodingStream xdr) throws OncRpcException, IOException { xdrDecode(xdr); } public void xdrEncode(XdrEncodingStream xdr) throws OncRpcException, IOException { xdr.xdrEncodeInt(dbenvcl_id); xdr.xdrEncodeInt(gbytes); xdr.xdrEncodeInt(bytes); xdr.xdrEncodeInt(ncache); } public void xdrDecode(XdrDecodingStream xdr) throws OncRpcException, IOException { dbenvcl_id = xdr.xdrDecodeInt(); gbytes = xdr.xdrDecodeInt(); bytes = xdr.xdrDecodeInt(); ncache = xdr.xdrDecodeInt(); }}// End of __env_cachesize_msg.java
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?