![JAR search and dependency download from the Maven repository](/logo.png)
src.com.android.bluetoothmidiservice.PacketEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-all Show documentation
Show all versions of android-all Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.bluetoothmidiservice;
import android.media.midi.MidiReceiver;
/**
* This is an abstract base class that encodes MIDI data into a packet buffer.
* PacketEncoder receives data via its {@link android.media.midi.MidiReceiver#onReceive} method
* and notifies its client of packets to write via the {@link PacketEncoder.PacketReceiver}
* interface.
*/
public abstract class PacketEncoder extends MidiReceiver {
public interface PacketReceiver {
/** Called to write an accumulated packet.
* @param buffer the packet buffer to write
* @param count the number of bytes in the packet buffer to write
*/
public void writePacket(byte[] buffer, int count);
}
/**
* Called to inform PacketEncoder when the previous write is complete.
*/
abstract public void writeComplete();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy