emit

On this page
  1. wakterm.emit(event_name, args...)

wakterm.emit(event_name, args...)#

wakterm.emit resolves the registered callback(s) for the specified event name and calls each of them in turn, passing the additional arguments through to the callback.

If a callback returns false then it prevents later callbacks from being called for this particular call to wakterm.emit, and wakterm.emit will return false to indicate that no additional/default processing should take place.

If none of the callbacks returned false then wakterm.emit will itself return true to indicate that default processing should take place.

This function has no special knowledge of which events are defined by wakterm, or what their required arguments might be.

See wakterm.on for more information about event handling.

Edit this page