-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix heartbeating implementation on stomp
- Loading branch information
Showing
17 changed files
with
226 additions
and
42 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
src/main/java/com/trickl/exceptions/MissingHeartbeatException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.trickl.exceptions; | ||
|
||
public class MissingHeartbeatException extends Exception { | ||
|
||
private static final long serialVersionUID = -1761231643713163261L; | ||
|
||
public MissingHeartbeatException(String message) { | ||
super(message); | ||
} | ||
|
||
public MissingHeartbeatException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public MissingHeartbeatException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
3 changes: 0 additions & 3 deletions
3
src/main/java/com/trickl/exceptions/NoSuchStreamException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 0 additions & 3 deletions
3
src/main/java/com/trickl/exceptions/NoSupportingDelegateException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/main/java/com/trickl/exceptions/RemoteStreamException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.trickl.exceptions; | ||
|
||
public class RemoteStreamException extends Exception { | ||
|
||
private static final long serialVersionUID = -1761231643713163261L; | ||
|
||
public RemoteStreamException(String message) { | ||
super(message); | ||
} | ||
|
||
public RemoteStreamException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public RemoteStreamException(Throwable cause) { | ||
super(cause); | ||
} | ||
} |
3 changes: 0 additions & 3 deletions
3
src/main/java/com/trickl/exceptions/SubscriptionFailedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.