Example usage for org.springframework.messaging.simp SimpMessageSendingOperations SimpMessageSendingOperations

List of usage examples for org.springframework.messaging.simp SimpMessageSendingOperations SimpMessageSendingOperations

Introduction

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

Prototype

SimpMessageSendingOperations

Source Link

Usage

From source file:com.devnexus.ting.config.ServicesConfig.java

@Bean
@Profile(SpringProfile.WEBSOCKET_DISABLED)
SimpMessageSendingOperations simpMessageSendingOperations() {
    return new SimpMessageSendingOperations() {

        @Override//w ww.  ja  v  a  2 s. c o  m
        public void send(String destination, Message<?> message) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void send(Message<?> message) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(String destination, Object payload, Map<String, Object> headers,
                MessagePostProcessor postProcessor) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(String destination, Object payload, MessagePostProcessor postProcessor)
                throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(String destination, Object payload, Map<String, Object> headers)
                throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(Object payload, MessagePostProcessor postProcessor)
                throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(String destination, Object payload) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSend(Object payload) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSendToUser(String user, String destination, Object payload,
                Map<String, Object> headers, MessagePostProcessor postProcessor) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSendToUser(String user, String destination, Object payload,
                MessagePostProcessor postProcessor) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSendToUser(String user, String destination, Object payload,
                Map<String, Object> headers) throws MessagingException {
            // TODO Auto-generated method stub

        }

        @Override
        public void convertAndSendToUser(String user, String destination, Object payload)
                throws MessagingException {
            // TODO Auto-generated method stub

        }
    };
}