Renamed SubscribableSource to Subscribable, and it no longer extends MessageSource.

This commit is contained in:
Mark Fisher
2008-09-07 21:20:00 +00:00
parent 35e744e60a
commit bd7c74b69c
7 changed files with 16 additions and 16 deletions

View File

@@ -21,12 +21,12 @@ import java.util.concurrent.CopyOnWriteArrayList;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageConsumer;
import org.springframework.integration.message.SubscribableSource;
import org.springframework.integration.message.Subscribable;
/**
* @author Mark Fisher
*/
public class TestSubscribableSource implements SubscribableSource {
public class TestSubscribableSource implements Subscribable {
private final List<MessageConsumer> subscibers = new CopyOnWriteArrayList<MessageConsumer>();