Beispiel #1
0
 delay: function(cb, ms, current)
 {
     Ice.Timer.setTimeout(
         function()
         {
             cb.ice_response();
         }, ms);
 },
Beispiel #2
0
 function(newCount)
 {
     test(count = newCount);
     Ice.Timer.setTimeout(
         function(){
             p1.succeed(count);
         }, 1200);
 }
Beispiel #3
0
 function()
 {
     Ice.Timer.setTimeout(function(){ f1(); }, 10000);
 },