Example usage for org.springframework.messaging.simp SimpMessageTypeMessageCondition MESSAGE

List of usage examples for org.springframework.messaging.simp SimpMessageTypeMessageCondition MESSAGE

Introduction

In this page you can find the example usage for org.springframework.messaging.simp SimpMessageTypeMessageCondition MESSAGE.

Prototype

SimpMessageTypeMessageCondition MESSAGE

To view the source code for org.springframework.messaging.simp SimpMessageTypeMessageCondition MESSAGE.

Click Source Link

Usage

From source file:org.springframework.messaging.simp.annotation.support.SimpAnnotationMethodMessageHandler.java

private SimpMessageMappingInfo createMessageMappingCondition(String[] destinations) {
    String[] resolvedDestinations = resolveEmbeddedValuesInDestinations(destinations);
    return new SimpMessageMappingInfo(SimpMessageTypeMessageCondition.MESSAGE,
            new DestinationPatternsMessageCondition(resolvedDestinations, this.pathMatcher));
}