blob: 20449546dc6714ca07f9cda216c5eee0863a55ff [file] [log] [blame]
package co.nstant.in.cbor;
import co.nstant.in.cbor.model.DataItem;
/**
* Callback interface for a streaming {@link CborDecoder}.
*/
public interface DataItemListener {
/**
* Gets called on every decoded {@link DataItem}.
*/
void onDataItem(DataItem dataItem);
}