org.bidib.wizard.api.model.debug.DebugDataEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
package org.bidib.wizard.api.model.debug;
import org.bidib.wizard.api.model.connection.AbstractQueueEvent;
public class DebugDataEvent extends AbstractQueueEvent {
private final byte[] data;
public DebugDataEvent(final String connectionId, final byte[] data) {
super(connectionId);
this.data = data;
}
public byte[] getData() {
return data;
}
@Override
public String toString() {
return "DebugDataEvent[connectionId=" + getConnectionId() + "]";
}
}