Skip to content

Commit

Permalink
Fix serialization ID clashes in coordination tools.
Browse files Browse the repository at this point in the history
  • Loading branch information
kuujo committed Aug 17, 2015
1 parent 44dd94b commit 2681c7d
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -61,7 +61,7 @@ protected Builder(BuilderPool<T, U> pool) {
/**
* Listen command.
*/
@SerializeWith(id=510)
@SerializeWith(id=515)
public static class Listen extends TopicCommand<Void> {

/**
Expand Down Expand Up @@ -92,7 +92,7 @@ protected Listen create() {
/**
* Unlisten command.
*/
@SerializeWith(id=511)
@SerializeWith(id=516)
public static class Unlisten extends TopicCommand<Void> {

/**
Expand Down Expand Up @@ -123,6 +123,7 @@ protected Unlisten create() {
/**
* Publish command.
*/
@SerializeWith(id=517)
public static class Publish<T> extends TopicCommand<Void> {

/**
Expand Down

0 comments on commit 2681c7d

Please sign in to comment.