Java Code Examples for org.springframework.messaging.simp.SimpMessageType#HEARTBEAT
The following examples show how to use
org.springframework.messaging.simp.SimpMessageType#HEARTBEAT .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: StompBrokerRelayMessageHandlerIntegrationTests.java From spring-analysis-note with MIT License | 5 votes |
@Override public void handleMessage(Message<?> message) throws MessagingException { if (SimpMessageType.HEARTBEAT == SimpMessageHeaderAccessor.getMessageType(message.getHeaders())) { return; } this.queue.add(message); }
Example 2
Source File: StompBrokerRelayMessageHandlerIntegrationTests.java From java-technology-stack with MIT License | 5 votes |
@Override public void handleMessage(Message<?> message) throws MessagingException { if (SimpMessageType.HEARTBEAT == SimpMessageHeaderAccessor.getMessageType(message.getHeaders())) { return; } this.queue.add(message); }
Example 3
Source File: StompBrokerRelayMessageHandlerIntegrationTests.java From spring4-understanding with Apache License 2.0 | 5 votes |
@Override public void handleMessage(Message<?> message) throws MessagingException { if (SimpMessageType.HEARTBEAT == SimpMessageHeaderAccessor.getMessageType(message.getHeaders())) { return; } this.queue.add(message); }
Example 4
Source File: StompHeaderAccessor.java From spring-analysis-note with MIT License | 4 votes |
StompHeaderAccessor() { super(SimpMessageType.HEARTBEAT, null); }
Example 5
Source File: StompHeaderAccessor.java From spring-analysis-note with MIT License | 4 votes |
public boolean isHeartbeat() { return (SimpMessageType.HEARTBEAT == getMessageType()); }
Example 6
Source File: StompHeaderAccessor.java From java-technology-stack with MIT License | 4 votes |
StompHeaderAccessor() { super(SimpMessageType.HEARTBEAT, null); }
Example 7
Source File: StompHeaderAccessor.java From java-technology-stack with MIT License | 4 votes |
public boolean isHeartbeat() { return (SimpMessageType.HEARTBEAT == getMessageType()); }
Example 8
Source File: StompHeaderAccessor.java From spring4-understanding with Apache License 2.0 | 4 votes |
StompHeaderAccessor() { super(SimpMessageType.HEARTBEAT, null); }
Example 9
Source File: StompHeaderAccessor.java From spring4-understanding with Apache License 2.0 | 4 votes |
public boolean isHeartbeat() { return (SimpMessageType.HEARTBEAT == getMessageType()); }