Moved SubscribableChannel from the 'message' package to the 'channel' package.

This commit is contained in:
Mark Fisher
2008-10-02 18:22:18 +00:00
parent 5d83da53fc
commit 4c02dd0605
4 changed files with 6 additions and 8 deletions

View File

@@ -27,10 +27,9 @@ import org.springframework.integration.message.Message;
/**
* Base class for {@link MessageChannel} implementations providing common
* properties such as the channel name and {@link DispatcherPolicy}. Also
* provides the common functionality for sending and receiving
* {@link Message Messages} including the invocation of any
* {@link ChannelInterceptor ChannelInterceptors}.
* properties such as the channel name. Also provides the common functionality
* for sending and receiving {@link Message Messages} including the invocation
* of any {@link ChannelInterceptor ChannelInterceptors}.
*
* @author Mark Fisher
*/

View File

@@ -19,7 +19,6 @@ package org.springframework.integration.channel;
import org.springframework.integration.dispatcher.MessageDispatcher;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageConsumer;
import org.springframework.integration.message.SubscribableChannel;
import org.springframework.util.Assert;
/**

View File

@@ -14,9 +14,9 @@
* limitations under the License.
*/
package org.springframework.integration.message;
package org.springframework.integration.channel;
import org.springframework.integration.channel.MessageChannel;
import org.springframework.integration.message.MessageConsumer;
/**
* Interface for any MessageChannel implementation that accepts subscribers.

View File

@@ -22,11 +22,11 @@ import org.springframework.context.Lifecycle;
import org.springframework.core.task.TaskExecutor;
import org.springframework.integration.channel.MessageChannel;
import org.springframework.integration.channel.PollableChannel;
import org.springframework.integration.channel.SubscribableChannel;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageConsumer;
import org.springframework.integration.message.MessageHandlingException;
import org.springframework.integration.message.MessagingException;
import org.springframework.integration.message.SubscribableChannel;
import org.springframework.integration.scheduling.IntervalTrigger;
import org.springframework.integration.scheduling.Trigger;
import org.springframework.util.Assert;