Oracle Corporation

com.bea.wlcp.wlng.api.event_channel
Interface EventChannelListener


public interface EventChannelListener

This interface is to be implemented in order to recieve events from the Event Channel utility service.

Copyright © 2008 Oracle Corporation Systems, Inc. All Rights Reserved.

Method Summary
 void processEvent(String eventType, Serializable event, String source)
          Called by the EventChannel when a new event has arrived.
 

Method Detail

processEvent

public void processEvent(String eventType,
                         Serializable event,
                         String source)
Called by the EventChannel when a new event has arrived.

Parameters:
eventType - A string representing the type of the event.
event - The event.
source - Service instance name of sender.

Oracle Corporation