package org.wikiwebserver.distribute.interfaces;

public interface Processor extends Transferer {

	public abstract void process(Object input) throws Exception;

}

