Commit 1adb36cd477d673e02359941eba5068efe3ee8c5
1 parent
33fc8f0b
Was added the filds of start-time and end-time
Showing
1 changed file
with
3 additions
and
1 deletions
@@ -30,9 +30,11 @@ public class Subscription { | @@ -30,9 +30,11 @@ public class Subscription { | ||
30 | private final SubscriptionState sub; | 30 | private final SubscriptionState sub; |
31 | private final boolean local; | 31 | private final boolean local; |
32 | private ServerAddress server; | 32 | private ServerAddress server; |
33 | + private long startTime; | ||
34 | + private long endTime; | ||
33 | 35 | ||
34 | public Subscription(SubscriptionState sub, boolean local) { | 36 | public Subscription(SubscriptionState sub, boolean local) { |
35 | - this(sub, local, null); | 37 | + this(sub, local, null, 0L, 0L); |
36 | } | 38 | } |
37 | 39 | ||
38 | public String getWsSessionId() { | 40 | public String getWsSessionId() { |