Interface ShortMidiMessageReceivedCallback

All Superinterfaces:
Callback, ShortMidiDataReceivedCallback

public interface ShortMidiMessageReceivedCallback extends ShortMidiDataReceivedCallback
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    midiReceived(int statusByte, int data1, int data2)
    Callback for receiving short (normal) MIDI messages on this MIDI input port.
    void
    Callback for receiving short (normal) MIDI messages on this MIDI input port.
  • Method Details

    • midiReceived

      void midiReceived(ShortMidiMessage msg)
      Callback for receiving short (normal) MIDI messages on this MIDI input port.
      Since:
      API version 2
    • midiReceived

      default void midiReceived(int statusByte, int data1, int data2)
      Description copied from interface: ShortMidiDataReceivedCallback
      Callback for receiving short (normal) MIDI messages on this MIDI input port.
      Specified by:
      midiReceived in interface ShortMidiDataReceivedCallback