Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following methods are all valid

Code Block
java
java
    @RecipientList 
    public String[] route(String body) { ... }
    
    @RecipientList 
    public List<String> route(String body) { ... }
    
    @RecipientList 
    public Endpoint route(String body) { ... }
    
    @RecipientList 
    public Endpoint[] route(String body) { ... }
    
    @RecipientList 
    public Collection<Endpoint> route(String body) { ... }
    
    @RecipientList 
    public URI route(String body) { ... }
    
    @RecipientList 
    public URI[] route(String body) { ... }

...