Package org.graylog2.outputs.filter
Interface FilteredMessage
- All Known Implementing Classes:
DefaultFilteredMessage
public interface FilteredMessage
A filtered message that contains output destination information.
-
Method Summary
Modifier and TypeMethodDescriptionA multimap of destination streams.booleanWhether the message has been indexed or not.message()The Message object.
-
Method Details
-
message
ImmutableMessage message()The Message object.- Returns:
- the message
-
destinations
A multimap of destination streams.- Returns:
- multimap of destination streams
-
isIndexed
boolean isIndexed()Whether the message has been indexed or not.- Returns:
- true if the message has been indexed. Otherwise, false.
-