Package org.apache.stratos.messaging.event

Examples of org.apache.stratos.messaging.event.Event


    private static final Log log = LogFactory.getLog(EventListener.class);

    @Override
    public void update(Observable o, Object arg) {
        if(arg instanceof Event) {
            Event event = (Event) arg;
            if(log.isDebugEnabled()) {
                log.debug(String.format("Event received: %s", event.getClass().getName()));
            }
            onEvent(event);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.stratos.messaging.event.Event

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.