Added a Javadoc

This commit is contained in:
Tristan B. Kildaire 2021-12-27 13:03:55 +02:00
parent f87a7f44ca
commit 3e826aa1ac
1 changed files with 8 additions and 0 deletions

View File

@ -203,6 +203,14 @@ public final class Engine : Thread
return signalHandlerThread;
}
/**
* returns all signal(s) responsible for
* handling the type of Event provided
*
* @param e the Event type to match to
* @returns Signal[] the list of signal
* handlers that handle event e
*/
public Signal[] getSignalsForEvent(Event e)
{
/* Matched handlers */