All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.ibm.as400.access.DataQueueEvent

java.lang.Object
   |
   +----java.util.EventObject
           |
           +----com.ibm.as400.access.DataQueueEvent

public class DataQueueEvent
extends EventObject
The DataQueueEvent class represents a DataQueue event.


Variable Index

 o DQ_CLEARED
The DataQueue clear event ID.
 o DQ_PEEKED
The DataQueue peek event ID.
 o DQ_READ
The DataQueue read event ID.
 o DQ_WRITTEN
The DataQueue write event ID.

Constructor Index

 o DataQueueEvent(Object, int)
Constructs a DataQueueEvent object.

Method Index

 o getID()
Returns the identifier for this event.

Variables

 o DQ_CLEARED
 public static final int DQ_CLEARED
The DataQueue clear event ID. This event is delivered when a clear has been performed.

 o DQ_PEEKED
 public static final int DQ_PEEKED
The DataQueue peek event ID. This event is delivered when a peek has been performed.

 o DQ_READ
 public static final int DQ_READ
The DataQueue read event ID. This event is delivered when a read has been performed.

 o DQ_WRITTEN
 public static final int DQ_WRITTEN
The DataQueue write event ID. This event is delivered when a write has been performed.

Constructors

 o DataQueueEvent
 public DataQueueEvent(Object source,
                       int id)
Constructs a DataQueueEvent object. It uses the specified source and ID.

Parameters:
source - The object where the event originated.
id - The event identifier.

Methods

 o getID
 public int getID()
Returns the identifier for this event.

Returns:
The identifier for this event.

All Packages  Class Hierarchy  This Package  Previous  Next  Index