Package org.springframework.integration.channel

Examples of org.springframework.integration.channel.PublishSubscribeChannel.subscribe()


public class ThroughputSampleIntegrationTests {

  @Test
  public void logsThroughputWhenControlMessagesReceived() {
    PublishSubscribeChannel pubsub = new PublishSubscribeChannel();
    pubsub.subscribe(new ThroughputSamplerMessageHandler());

    int msgs = 100000;
    pubsub.send(new GenericMessage<String>("START"));
    for (int i = 0; i < msgs; i++) {
      pubsub.send(new GenericMessage<Object>(new Object()));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.