Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Hassan
I wanna just rectify Event1 ev1=new Event1((long)1000,(long)2000); // occur in 1s and finishes in 2s Event1 ev2=new Event1((long)3000,(long)4000); // occur in 3s and finishes in 4s thanks :) -- View this message in context: http://drools.46999.n3.nabble.com/rules-users-CLOUD-mode-Vs-Stream

Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Hassan
nordered cloud against which the engine tries to match rules./* >> > >> > >> > >> > So the engine can not known if this event is after another, for exemple, >> > Despite "After" work !! >> > >> > thanks ! >> > >&

Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Mauricio Salatino
"After" work !! > > > > thanks ! > > > > -- > > View this message in context: > > > http://drools.46999.n3.nabble.com/rules-users-CLOUD-mode-Vs-Stream-Mode-tp3780299p3780337.html > > Sent from the Drools: User forum mailing list archive

Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Wolfgang Laun
fter" work !! > > thanks ! > > -- > View this message in context: > http://drools.46999.n3.nabble.com/rules-users-CLOUD-mode-Vs-Stream-Mode-tp3780299p3780337.html > Sent from the Drools: User forum mailing list archive at Nabble.com. > ___

Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Hassan
unnordered cloud against which the engine tries to match rules./* So the engine can not known if this event is after another, for exemple, Despite "After" work !! thanks ! -- View this message in context: http://drools.46999.n3.nabble.com/rules-users-CLOUD-mode-Vs-Stream-Mode-tp3780299p37

Re: [rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Mauricio Salatino
Hi, What exactly are you doing with events? I think that the temporal operators will work as expected. If you are working in cloud mode you will not have sliding windows, the concept of now and events lifecycle managements as stated in the docs. Cheers On Mon, Feb 27, 2012 at 10:51 AM, Hassan wro

[rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Hassan
Hello, It's clair that to work with thae events we have to put our base configuration into STREAM mode like this: */KnowledgeBaseConfiguration config = KnowledgeBaseFactory.newKnowledgeBaseConfiguration(); config.setOption( EventProcessingOption.STREAM );/* But in an exemple, I didn't use this

[rules-users] CLOUD mode Vs Stream Mode.

2012-02-27 Thread Hassan
Hello, It's clair that to work with thae events we have to put our base configuration into STREAM mode like this: */KnowledgeBaseConfiguration config = KnowledgeBaseFactory.newKnowledgeBaseConfiguration(); config.setOption( EventProcessingOption.STREAM );/* But in my code bellow I didn't use t