Package akka.testkit

Class InfoFilter

  • All Implemented Interfaces:
    java.io.Serializable, scala.Equals, scala.Product, scala.Serializable

    public final class InfoFilter
    extends EventFilter
    implements scala.Product, scala.Serializable
    Java API: create an InfoFilter

    param: source apply this filter only to events from the given source; do not filter on source if this is given as null param: message apply this filter only to events whose message matches; do not filter on message if this is given as null param: pattern if false, the message string must start with the given string, otherwise the message argument is treated as regular expression which is matched against the message (may match only a substring to filter) param: complete whether the event’s message must match the given message string or pattern completely

    See Also:
    Serialized Form
    • Constructor Detail

      • InfoFilter

        public InfoFilter​(scala.Option<java.lang.String> source,
                          scala.util.Either<java.lang.String,​scala.util.matching.Regex> message,
                          boolean complete,
                          int occurrences)
      • InfoFilter

        public InfoFilter​(java.lang.String source,
                          java.lang.String message,
                          boolean pattern,
                          boolean complete,
                          int occurrences)
        Java API: create an InfoFilter

        Parameters:
        source - apply this filter only to events from the given source; do not filter on source if this is given as null
        message - apply this filter only to events whose message matches; do not filter on message if this is given as null
        pattern - if false, the message string must start with the given string, otherwise the message argument is treated as regular expression which is matched against the message (may match only a substring to filter)
        complete - whether the event&rsquo;s message must match the given message string or pattern completely
        occurrences - (undocumented)
    • Method Detail

      • apply

        public static InfoFilter apply​(scala.Option<java.lang.String> source,
                                       scala.util.Either<java.lang.String,​scala.util.matching.Regex> message,
                                       boolean complete,
                                       int occurrences)
      • unapply

        public static scala.Option<scala.Tuple3<scala.Option<java.lang.String>,​scala.util.Either<java.lang.String,​scala.util.matching.Regex>,​java.lang.Object>> unapply​(InfoFilter x$0)
      • source

        public scala.Option<java.lang.String> source()
        Overrides:
        source in class EventFilter
      • message

        public scala.util.Either<java.lang.String,​scala.util.matching.Regex> message()
        Overrides:
        message in class EventFilter
      • matches

        public boolean matches​(Logging.LogEvent event)
        Description copied from class: EventFilter
        This method decides whether to filter the event (true) or not (false).
        Specified by:
        matches in class EventFilter
        Parameters:
        event - (undocumented)
        Returns:
        (undocumented)
      • copy

        public InfoFilter copy​(scala.Option<java.lang.String> source,
                               scala.util.Either<java.lang.String,​scala.util.matching.Regex> message,
                               boolean complete,
                               int occurrences)
      • copy$default$1

        public scala.Option<java.lang.String> copy$default$1()
      • copy$default$2

        public scala.util.Either<java.lang.String,​scala.util.matching.Regex> copy$default$2()
      • copy$default$3

        public boolean copy$default$3()
      • productPrefix

        public java.lang.String productPrefix()
        Specified by:
        productPrefix in interface scala.Product
      • productArity

        public int productArity()
        Specified by:
        productArity in interface scala.Product
      • productElement

        public java.lang.Object productElement​(int x$1)
        Specified by:
        productElement in interface scala.Product
      • productIterator

        public scala.collection.Iterator<java.lang.Object> productIterator()
        Specified by:
        productIterator in interface scala.Product
      • canEqual

        public boolean canEqual​(java.lang.Object x$1)
        Specified by:
        canEqual in interface scala.Equals
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object x$1)
        Specified by:
        equals in interface scala.Equals
        Overrides:
        equals in class java.lang.Object