Code: Http://git.oschina.net/jmpp/CommonEvent
Write yourself a simple Java event framework. Currently has the following features:
1. By inheriting the event class, users can customize events.
2. Issue an event via EventService's FireEvent (event e).
3. Monitor a class of events by implementing the Ieventhandler interface. EventHandler can be dynamically registered to Eventserver, or it can be configured in a configuration file.
4. By implementing the Ieventconsumedcallback interface, notifies the event issuer when the event is processed. Ieventconsumedcallback can be specified at fireevent or unspecified.
Both the 5.fireEvent and consume event are asynchronous and are handled by the thread pool consume event.
The class diagram is as follows:
Code: Http://git.oschina.net/jmpp/CommonEvent (contains test code)
Test:
1. Customizing the event
Import com.lenovo.commonevent.event;/** * Project: commonevent * FileName: Testevent.java * @Description: TODO * @author: jmpp * createdate: March 16, 2015 PM 5:57:12 * Copyright: Copyright (C) 2014-2015 * Company Lenovo Ltd. * All rights Reserved, designed by Lenovo CIC. *//** * Class TestEvent Implementation Description: TODO class Implementation Description * * @author JMPP March 16, 2015 PM 5:57:12 */public Class TestEvent extends Event {
public testevent () { super (TestEvent.class.getSimpleName ()); }}
2. Define a EventHandler
Import Java.util.date;import com.lenovo.commonevent.event;import com.lenovo.commonevent.ieventhandler;/** * Project : commonevent * FileName: Testeventhandler.java * @Description: TODO * @author: jmpp * @version V1.0 * CreateDate: March 16, 2015 afternoon 6:00:34 * Copyright: Copyright (C) 2014-2015 * Company Lenovo Ltd. * All right S Reserved, designed by Lenovo CIC. *//** * Class Testeventhandler Implementation Description: TODO class Implementation Description * * @author JMPP March 16, 2015 PM 6:00:34 */public Class Testeventhandler imple ments Ieventhandler { /** * @author JMPP March 16, 2015 PM 6:00:48 */ @Override public Object OnEvent (Event event) { System.out.println ("on Event " + event.getid () + "Type:" + event.gettype ()); return new Date ();} }
3. Define Eventconsumedcallback
import Java.util.date;import Com.lenovo.commonevent.event;import Com.lenovo.commonevent.eventservice;import com.lenovo.commonevent.ieventconsumedcallback;/** * project:commonevent * FileName:TestEventInvoker.java * @Des Cription:todo * @author: JMPP * @version V1.0 * createdate:2015 year March 16 afternoon 6:03:47 * Copyright:copyright (C 2014-2015 * Company Lenovo Ltd. * All rights Reserved, designed by Lenovo CIC. *//** * Class Testeventinvoker Implementation Description: TODO class Implementation Description * * @author JMPP March 16, 2015 PM 6:03:47 */public Class Testeventinvoker Implemen TS Ieventconsumedcallback {/** * @author jmpp March 16, 2015 PM 6:04:02 */@SuppressWarnings ("deprecation") @O Verride public void oneventfinished (event event, Object result) {System.out.println ("event callback" + EVENT.G Etid () + "at" + ((Date) result). toLocaleString ()); }}
4. Test call trigger Event-〉 processing event (Handle), callback callback
Import Java.util.date;import Com.lenovo.commonevent.event;import Com.lenovo.commonevent.eventservice;import com.lenovo.commonevent.ieventconsumedcallback;/** * project:commonevent * FileName:TestEventInvoker2.java * @De Scription:todo * @author: JMPP * @version V1.0 * createdate:2015 year March 16 afternoon 6:03:47 * Copyright:copyright ( C) 2014-2015 * Company Lenovo Ltd. * All rights Reserved, designed by Lenovo CIC. *//** * Class TestEventInvoker2 Implementation Description: TODO class Implementation Description * * @author JMPP March 16, 2015 afternoon 6:03:47 */public class TestEventInvoker2 { public static void Main (String args[]) throws Exception {eventservice.init (null); Eventservice.registereventhandler (TestEvent.class.getSimpleName (), New Testeventhandler ()); for (int i = 0; i < i++) {TestEvent event = new TestEvent (); Eventservice.fireevent (event, New Testeventinvoker ()); } thread.sleep (5000); Eventservice.stop (); }}
Simple Java event-Event framework