示例#1
0
        private SupportBeanTimestamp SendEvent(String id, String groupId, long timestamp)
        {
            var theEvent = new SupportBeanTimestamp(id, groupId, timestamp);
            var runtime  = _epService.EPRuntime;

            runtime.SendEvent(theEvent);
            return(theEvent);
        }
示例#2
0
        private SupportBeanTimestamp SendEvent(String id, long timestamp)
        {
            SupportBeanTimestamp theEvent = new SupportBeanTimestamp(id, timestamp);
            EPRuntime            runtime  = _epService.EPRuntime;

            runtime.SendEvent(theEvent);
            return(theEvent);
        }
示例#3
0
        private SupportBeanTimestamp SendEvent(EPServiceProvider epService, string id, long timestamp)
        {
            var       theEvent = new SupportBeanTimestamp(id, timestamp);
            EPRuntime runtime  = epService.EPRuntime;

            runtime.SendEvent(theEvent);
            return(theEvent);
        }