Remove() public method

public Remove ( UUID itemID, int handle ) : void
itemID UUID
handle int
return void
Exemplo n.º 1
0
 /// <summary>
 /// Removes the listen event callback with handle
 /// </summary>
 /// <param name="itemID">UUID of the script engine</param>
 /// <param name="handle">handle returned by Listen()</param>
 public void ListenRemove(UUID itemID, int handle)
 {
     m_listenerManager.Remove(itemID, handle);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Removes the listen event callback with handle
 /// </summary>
 /// <param name="itemID">UUID of the script engine</param>
 /// <param name="handle">handle returned by Listen()</param>
 public void ListenRemove(UUID itemID, int handle)
 {
     //Make sure that the cmd handler thread is running
     m_scriptModule.PokeThreads();
     m_listenerManager.Remove(itemID, handle);
 }