io.sarl.lang.core
Interface SREListener
All Superinterfaces:
java.util.EventListener
interface SREListener
implements java.util.EventListener
Observer on SRE events.

This observer will be notified depending on the the implementation of the SRE.
Maven Group Identifier:
io.sarl.lang
Maven Artifact Identifier:
core
Since:
0.11
Action Summary
Modifier and type Action and description
abstract void sreStarted(SREBootstrap)
Invoked when the SRE is started.
abstract void sreStopped(SREBootstrap)
Invoked when the SRE is stopped.
Action Details
sreStarted(SREBootstrap)
def sreStarted(SREBootstrap)
Invoked when the SRE is started.
Parameters:
sre - the started SRE.
sreStopped(SREBootstrap)
def sreStopped(SREBootstrap)
Invoked when the SRE is stopped.
Parameters:
sre - the stopped SRE.