001package org.openimaj.picslurper; 002 003import java.io.IOException; 004 005/** 006 * @author Sina Samangooei (ss@ecs.soton.ac.uk) 007 * 008 */ 009public interface StatusFeeder { 010 /** 011 * Start feeding statuses to the provided picslurper. This method should not block 012 * @param slurper 013 * @throws IOException 014 */ 015 public void feedStatus(PicSlurper slurper) throws IOException; 016}