Moved PollingDispatcher from the dispatcher package to the bus package. It depends on the scheduling and channel packages.

This commit is contained in:
Mark Fisher
2008-08-14 15:28:27 +00:00
parent 8389842976
commit add3d6a121
7 changed files with 9 additions and 7 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package org.springframework.integration.dispatcher;
package org.springframework.integration.bus;
import static org.easymock.EasyMock.createMock;
import static org.easymock.EasyMock.expect;
@@ -25,6 +25,7 @@ import static org.easymock.EasyMock.verify;
import org.junit.Before;
import org.junit.Test;
import org.springframework.integration.dispatcher.MessageDispatcher;
import org.springframework.integration.message.BlockingSource;
import org.springframework.integration.message.Message;
import org.springframework.integration.scheduling.Schedule;