private Object makeSupportEvent(String theString, int intPrimitive, long longBoxed) { SupportBean bean = new SupportBean(); bean.setTheString(theString); bean.setIntPrimitive(intPrimitive); bean.setLongBoxed(longBoxed); return bean; }
private SupportBean sendEvent(int intPrimitive, int intBoxed) { SupportBean bean = new SupportBean(); bean.setTheString("myId"); bean.setIntPrimitive(intPrimitive); bean.setIntBoxed(intBoxed); epService.getEPRuntime().sendEvent(bean); return bean; }
private void sendEvent(String s, double doubleBoxed, int intPrimitive, int intBoxed) { SupportBean bean = new SupportBean(); bean.setTheString(s); bean.setDoubleBoxed(doubleBoxed); bean.setIntPrimitive(intPrimitive); bean.setIntBoxed(intBoxed); epService.getEPRuntime().sendEvent(bean); }