io.firebus.information.ConsumerInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firebus-core Show documentation
Show all versions of firebus-core Show documentation
Firebus core functionality
package io.firebus.information;
public class ConsumerInformation extends FunctionInformation
{
protected String consumerName;
public ConsumerInformation(String sn)
{
consumerName = sn;
}
public byte[] serialise()
{
return null;
}
public void deserialise(byte[] bytes)
{
}
public String toString()
{
return "Consumer : " + consumerName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy