Class/Object

io.finch.EndpointResult

NotMatched

Related Docs: object NotMatched | package EndpointResult

Permalink

abstract class NotMatched extends EndpointResult[Nothing]

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NotMatched
  2. EndpointResult
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new NotMatched()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. final def awaitOutput(d: Duration = Duration.Top): Option[Try[Output[Nothing]]]

    Permalink

    Awaits for an Output wrapped with Try (indicating if the com.twitter.util.Future is failed).

    Awaits for an Output wrapped with Try (indicating if the com.twitter.util.Future is failed).

    returns

    Some(output) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
    Note

    This method is blocking. Never use it in production.

  6. final def awaitOutputUnsafe(d: Duration = Duration.Top): Option[Output[Nothing]]

    Permalink

    Awaits an Output of the Endpoint result or throws an exception if an underlying com.twitter.util.Future is failed.

    Awaits an Output of the Endpoint result or throws an exception if an underlying com.twitter.util.Future is failed.

    returns

    Some(output) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
    Note

    This method is blocking. Never use it in production.

  7. final def awaitValue(d: Duration = Duration.Top): Option[Try[Nothing]]

    Permalink

    Awaits a value from the Output wrapped with Try (indicating if either the com.twitter.util.Future is failed or Output wasn't a payload).

    Awaits a value from the Output wrapped with Try (indicating if either the com.twitter.util.Future is failed or Output wasn't a payload).

    returns

    Some(value) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
    Note

    This method is blocking. Never use it in production.

  8. final def awaitValueUnsafe(d: Duration = Duration.Top): Option[Nothing]

    Permalink

    Awaits a value from the Output or throws an exception if either an underlying com.twitter.util.Future is failed or Output wasn't a payload.

    Awaits a value from the Output or throws an exception if either an underlying com.twitter.util.Future is failed or Output wasn't a payload.

    returns

    Some(value) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
    Note

    @note This method is blocking. Never use it in production.

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  11. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  12. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  14. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. def isMatched: Boolean

    Permalink

    Whether the Endpoint is matched on a given Input.

    Whether the Endpoint is matched on a given Input.

    Definition Classes
    NotMatchedEndpointResult
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. final def output: Option[Future[Output[Nothing]]]

    Permalink

    Runs and returns the Output (wrapped with future) after an Endpoint is matched.

    Runs and returns the Output (wrapped with future) after an Endpoint is matched.

    returns

    Some(output) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
  21. final def remainder: Option[Input]

    Permalink

    Returns the remainder of the Input after an Endpoint is matched.

    Returns the remainder of the Input after an Endpoint is matched.

    returns

    Some(remainder) if this endpoint was matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  23. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  24. final def trace: Option[Trace]

    Permalink

    Returns the Trace if an Endpoint is matched.

    Returns the Trace if an Endpoint is matched.

    returns

    Some(trace) if this endpoint is matched on a given input, None otherwise.

    Definition Classes
    EndpointResult
  25. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from EndpointResult[Nothing]

Inherited from AnyRef

Inherited from Any

Ungrouped