|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface EventManager
An interface for registering EventListeners to listen for
database events.
| Method Summary | |
|---|---|
void |
addEventListener(String eventName,
EventListener listener)
Register an EventListener that will be called when an event occurs. |
void |
connect()
Make a connection with a database to listen for events. |
void |
disconnect()
Close the connection to the database. |
String |
getDatabase()
Returns the database path for the connection to the database. |
String |
getHost()
Returns the host for the connection to the database. |
String |
getPassword()
Returns the password for the connection to the database. |
int |
getPort()
Returns the port for the connection to the database. |
String |
getUser()
Returns the username for the connection to the databaes. |
void |
removeEventListener(String eventName,
EventListener listener)
Remove an EventListener for a given event. |
void |
setDatabase(String database)
Sets the database path for the connection to the database. |
void |
setHost(String host)
Sets the host for the connection to the database. |
void |
setPassword(String password)
Sets the password for the connection to the database. |
void |
setPort(int port)
Sets the port for the connection to the database. |
void |
setUser(String user)
Sets the username for the connection to the database . |
int |
waitForEvent(String eventName)
Wait for the one-time occurence of an event. |
int |
waitForEvent(String eventName,
int timeout)
Wait for the one-time occurence of an event. |
| Method Detail |
|---|
void connect()
throws SQLException
SQLException - If a database communication error occurs
void disconnect()
throws SQLException
SQLException - If a database communication error occursvoid setUser(String user)
username - for the connection to the database.String getUser()
void setPassword(String password)
password - for the connection to the database.String getPassword()
void setDatabase(String database)
database - path for the connection to the database.String getDatabase()
String getHost()
void setHost(String host)
host - for the connection to the database.int getPort()
void setPort(int port)
port - for the connection to the database.
void addEventListener(String eventName,
EventListener listener)
throws SQLException
eventName - The name of the event for which the listener will
be notifiedlistener - The EventListener that will be called when the given
event occurs
SQLException - If a database access error occurs
void removeEventListener(String eventName,
EventListener listener)
throws SQLException
eventName - The name of the event for which the listener
will be unregistered.listener - The EventListener that is to be unregistered
SQLException - If a database access error occurs
int waitForEvent(String eventName)
throws InterruptedException,
SQLException
eventName occurs. The return value is the
number of occurrences of the requested event.
eventName - The name of the event to wait for
InterruptedException - If interrupted while waiting
SQLException - If a database access error occurs
int waitForEvent(String eventName,
int timeout)
throws InterruptedException,
SQLException
timeout milliseconds,
waiting for the event identified by eventName to occur.
A timeout value of 0 means wait indefinitely.
The return value is the number of occurences of the event in question,
or -1 if the call timed out.
exenvtName - The name of the event to wait fortimeout - The maximum number of milliseconds to wait
-1 if the call timed out
InterruptedException - If interrupted while waiting
SQLException - If a database access error occurs
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||