Interface ILuaCallback


public interface ILuaCallback
A continuation which is called when this coroutine is resumed.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    resume(Object[] args)
    Resume this coroutine.
  • Method Details

    • resume

      MethodResult resume(Object[] args) throws LuaException
      Resume this coroutine.
      Parameters:
      args - The result of resuming this coroutine. These will have the same form as described in LuaFunction.
      Returns:
      The result of this continuation. Either the result to return to the callee, or another yield.
      Throws:
      LuaException - On an error.