1.1

Table Of Contents
Stop or Remove an AsyncEventListener Configuration
To stop a running AsyncEventListener conguration, use the SYS.STOP_ASYNC_EVENT_LISTENER
procedure and specify the identier to the conguration to stop:
java.sql.Connection conn = getConnection();
CallableStatement cs = conn.prepareCall("call
SYS.STOP_ASYNC_EVENT_LISTENER( ? )");
cs.setString(1, "MyID");
cs.execute();
This stops dispatching events to the callback listener class. Also, the close() method of the Callback
AsyncEventListener class is invoked so that the implementation can perform any necessary cleanup.
You can also remove a listener implementation from the cluster using DROP ASYNCEVENTLISTENER on
page 502.
vFabric SQLFire User's Guide198
Caching Data with vFabric SQLFire