Package org.springframework.web.socket.sockjs.transport

Examples of org.springframework.web.socket.sockjs.transport.SockJsSession


  }

  @Test
  public void handleMessageToClientConnectedWithHeartbeats() {

    SockJsSession sockJsSession = Mockito.mock(SockJsSession.class);

    StompHeaderAccessor headers = StompHeaderAccessor.create(StompCommand.CONNECTED);
    headers.setHeartbeat(0,10);
    Message<byte[]> message = MessageBuilder.createMessage(EMPTY_PAYLOAD, headers.getMessageHeaders());
    this.protocolHandler.handleMessageToClient(sockJsSession, message);
View Full Code Here

TOP

Related Classes of org.springframework.web.socket.sockjs.transport.SockJsSession

Copyright © 2018 www.massapicom. 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.