aqjmsmultiqueueitem.java

来自「Oracle Advance Queue(AQ)的使用例子」· Java 代码 · 共 27 行

JAVA
27
字号
import java.io.*;

/** This is a sample message item class using the JMS Interface to AQ

	@author Rene Steiner, Akadia AG
*/
public class AQJmsMultiQueueItem implements Serializable {

	private int     _no;
	private String  _title;
	private String  _text;

  /** Constructor that creates a message item
  */
  public AQJmsMultiQueueItem(int no, String title, String text) {
    _no     = no;
    _title  = title;
    _text   = text;
  }

  public int getNo() { return _no; }
  public String getTitle() { return _title; }
  public String getText() { return _text; }

} // End of class AQJmsMultiQueueItem

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?