-
- All Superinterfaces:
EventListener
public interface MetaEventListener extends EventListener
TheMetaEventListener
interface should be implemented by classes whose instances need to be notified when aSequencer
has processed aMetaMessage
. To register aMetaEventListener
object to receive such notifications, pass it as the argument to theaddMetaEventListener
method ofSequencer
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
meta(MetaMessage meta)
Invoked when aSequencer
has encountered and processed aMetaMessage
in theSequence
it is processing.
-
-
-
Method Detail
-
meta
void meta(MetaMessage meta)
Invoked when aSequencer
has encountered and processed aMetaMessage
in theSequence
it is processing.- Parameters:
meta
- the meta-message that the sequencer encountered
-
-