All Downloads are FREE. Search and download functionalities are using the official Maven repository.

li.rudin.arduino.api.message.MessageParseResult Maven / Gradle / Ivy

There is a newer version: 2.12
Show newest version
package li.rudin.arduino.api.message;

import java.util.List;

public class MessageParseResult
{
	
	public MessageParseResult(List messages, int consumedBytes)
	{
		this.consumedBytes = consumedBytes;
		this.messages = messages;
	}
	
	public List getMessages()
	{
		return messages;
	}

	public int getConsumedBytes()
	{
		return consumedBytes;
	}

	private final List messages;

	private final int consumedBytes;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy