Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ public StreamListenerContainer(Environment environment, @Nullable Codec codec) {
: new DefaultStreamMessageConverter();
}

/**
* Get a name of stream this listener listens to.
*/
public String getStreamName() {
return streamName;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Must be with this..
Also add @since 3.2.3 to this method JavaDocs and your name to the @author list.
Thanks.

}

/**
* {@inheritDoc}
* Mutually exclusive with {@link #superStream(String, String)}.
Expand Down
Loading