- java.lang.Object
-
- javax.sound.midi.Sequencer.SyncMode
-
- Enclosing interface:
- Sequencer
public static class Sequencer.SyncMode extends Object
ASyncMode
object represents one of the ways in which a MIDI sequencer's notion of time can be synchronized with a master or slave device. If the sequencer is being synchronized to a master, the sequencer revises its current time in response to messages from the master. If the sequencer has a slave, the sequencer similarly sends messages to control the slave's timing.There are three predefined modes that specify possible masters for a sequencer:
INTERNAL_CLOCK
,MIDI_SYNC
, andMIDI_TIME_CODE
. The latter two work if the sequencer receives MIDI messages from another device. In these two modes, the sequencer's time gets reset based on system real-time timing clock messages or MIDI time code (MTC) messages, respectively. These two modes can also be used as slave modes, in which case the sequencer sends the corresponding types of MIDI messages to its receiver (whether or not the sequencer is also receiving them from a master). A fourth mode,NO_SYNC
, is used to indicate that the sequencer should not control its receiver's timing.
-
-
Field Summary
Fields Modifier and Type Field and Description static Sequencer.SyncMode
INTERNAL_CLOCK
A master synchronization mode that makes the sequencer get its timing information from its internal clock.static Sequencer.SyncMode
MIDI_SYNC
A master or slave synchronization mode that specifies the use of MIDI clock messages.static Sequencer.SyncMode
MIDI_TIME_CODE
A master or slave synchronization mode that specifies the use of MIDI Time Code.static Sequencer.SyncMode
NO_SYNC
A slave synchronization mode indicating that no timing information should be sent to the receiver.
-
Constructor Summary
Constructors Modifier Constructor and Description protected
Sequencer.SyncMode(String name)
Constructs a synchronization mode.
-
-
-
Field Detail
-
INTERNAL_CLOCK
public static final Sequencer.SyncMode INTERNAL_CLOCK
A master synchronization mode that makes the sequencer get its timing information from its internal clock. This is not a legal slave sync mode.
-
MIDI_SYNC
public static final Sequencer.SyncMode MIDI_SYNC
A master or slave synchronization mode that specifies the use of MIDI clock messages. If this mode is used as the master sync mode, the sequencer gets its timing information from system real-time MIDI clock messages. This mode only applies as the master sync mode for sequencers that are also MIDI receivers. If this is the slave sync mode, the sequencer sends system real-time MIDI clock messages to its receiver. MIDI clock messages are sent at a rate of 24 per quarter note.
-
MIDI_TIME_CODE
public static final Sequencer.SyncMode MIDI_TIME_CODE
A master or slave synchronization mode that specifies the use of MIDI Time Code. If this mode is used as the master sync mode, the sequencer gets its timing information from MIDI Time Code messages. This mode only applies as the master sync mode to sequencers that are also MIDI receivers. If this mode is used as the slave sync mode, the sequencer sends MIDI Time Code messages to its receiver. (See the MIDI 1.0 Detailed Specification for a description of MIDI Time Code.)
-
NO_SYNC
public static final Sequencer.SyncMode NO_SYNC
A slave synchronization mode indicating that no timing information should be sent to the receiver. This is not a legal master sync mode.
-
-
Constructor Detail
-
Sequencer.SyncMode
protected Sequencer.SyncMode(String name)
Constructs a synchronization mode.- Parameters:
name
- name of the synchronization mode
-
-
Method Detail
-
equals
public final boolean equals(Object obj)
Determines whether two objects are equal. Returnstrue
if the objects are identical- Overrides:
equals
in classObject
- Parameters:
obj
- the reference object with which to compare- Returns:
true
if this object is the same as theobj
argument,false
otherwise- See Also:
Object.hashCode()
,HashMap
-
hashCode
public final int hashCode()
Finalizes the hashcode method.- Overrides:
hashCode
in classObject
- Returns:
- a hash code value for this object.
- See Also:
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/sound/midi/sequencer.syncmode.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.