<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">as replied earlier, if your doing nothing but consuming events, you can just block instead of sleep:<div><br></div><div>con:pop(1)</div><div><br></div><div>there is also a msleep function that you can call the same way you do console_log, it takes milli seconds as its arg. &nbsp;Note this should NOT be used when you have a script running as a session, only when you are running an api script.</div><div><br></div><div>Mike</div><div><br><div><div>On Mar 31, 2009, at 11:15 AM, Matthew Fong wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Got a few more questions about running LUA scripts, please forgive me, I'm an absolute newbie with LUA.<div><br></div><div>If I want to subscribe to a custom event, and I use</div><div><br></div><div>con = freeswitch.EventConsumer("CUSTOM my::event");</div> <div><br></div><div>I get an error. Is this because I must subscribe to the CUSTOM (only) event, and then filter out the events using the&nbsp;<span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px; ">Event-Subclass myself? Or am I missing something in the syntax of the subscribe?</span></div> <div><span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px;"><br></span></div><div><span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px;">Also, if I do not have a freeswitch.Session, what is the best way to have my LUA script sleep? I want a functionality, where a statement inside my LUA script gets&nbsp;iterated&nbsp;every 30 seconds. My program does not use a session, so I cannot use session:execute("sleep","1000"), as suggested in the wiki. I tried api::sleep(30000) and a few other combinations with execute but no luck :(.&nbsp;</span></div> <div><span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px;"><br></span></div><div><span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px;">Thanks.</span></div> <div><span class="Apple-style-span" style="font-family: -webkit-sans-serif; line-height: 19px;">--matt<br></span><br><div class="gmail_quote">On Sat, Mar 28, 2009 at 12:43 AM, Michael Collins <span dir="ltr">&lt;<a href="mailto:msc@freeswitch.org">msc@freeswitch.org</a>></span> wrote:<br> <blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><div class="im">> con = freeswitch.EventConsumer("all");<br> ><br> > now you have a consumer obj<br> ><br> > every time you call con:pop() with no arg you will either get an event or<br> > nil when there are no events to consume.<br> > every time you call con:pop(1) the consumer object will block until there is<br> > an event.<br> ><br> > So you use the first way in conjunction with some other lock to do async or<br> > the 2nd way you do a dedicated blocking loop.<br> <br> </div>FYI, I added this information to the wiki page for freeswitch.EventConsumer.<br> <font color="#888888">-MC<br> </font><div><div></div><div class="h5"><br> _______________________________________________<br> Freeswitch-users mailing list<br> <a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br> <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br> UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br> <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br> </div></div></blockquote></div><br></div> _______________________________________________<br>Freeswitch-users mailing list<br><a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>http://lists.freeswitch.org/mailman/listinfo/freeswitch-users<br>UNSUBSCRIBE:http://lists.freeswitch.org/mailman/options/freeswitch-users<br>http://www.freeswitch.org<br></blockquote></div><br></div></body></html>