Next: , Previous: slave_free method, Up: MIN2Lua API


6.6.13 expect method

Method expect is used to wait for variable that will be passed from slave. As a parameter it takes name of the variable under which it has been send.

     function case_function() - remote expect example
     	slavehnd = min.slave_allocate(SlaveTypePhone,"Slave1");
     	a = slavehnd:expect("foo");
     	min.slave_free(slavehnd);
     end