Method AsyncResult():signal() Foundation
Signals successful completion with a result value.
:signal( <xValue> ) --> self
This method returns self.
This method is called by the producer of the AsyncResult to indicate that the asynchronous operation has completed successfully. It transitions the AsyncResult from the "waiting" state to the "finished" state and stores the provided result value.
If codeblocks have been registered through :then() or :finally(), they will be executed when this method is called.
This method has no effect if the AsyncResult is not in the "waiting" state.
If you see anything in the documentation that is not correct, does not match your experience with the particular feature or requires further clarification, please use this form to report a documentation issue.