📄 returndataholder.java
字号:
/*------------------------------------------------------------------------------Name: ReturnDataHolder.javaProject: xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.util.queue;import java.util.ArrayList;/** * DataHolder Object to hold the return data of methods used in the different * implementations of the I_Queue and their helper classes. * * @author <a href="mailto:xmlBlaster@marcelruff.info">Marcel Ruff</a> * @author <a href='mailto:michele@laghi.eu'>Michele Laghi</a> * */public class ReturnDataHolder { public long countEntries = 0; public long countBytes = 0L; public final ArrayList list = new ArrayList();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -