Packages

object PartitioningStrategy

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PartitioningStrategy
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type RequestMerger[Req <: ThriftStructIface] = (Seq[Req]) ⇒ Req

    A request merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    A request merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    This is used for HashingPartitioningStrategy, which applies a consistent hashing partitioning strategy under the hood. Note that more than one request may fall in the same HashNode, even though they're assigned with different hashing keys. It merges a collection of requests to a final request which matches the Thrift IDL definition. RequestMerger is registered through RequestMergerRegistry

    for example:

    i32 example(1: string in)
    
    val requestMerger: RequestMerger[Example.Args] = listArgs =>
      Example.Args(in = listArgs.map(_.in).mkString(";"))
  2. final class RequestMergerRegistry extends AnyRef

    Maintain a map of method name to method's RequestMerger.

  3. type ResponseMerger[Rep] = (Seq[Rep], Seq[Throwable]) ⇒ Try[Rep]

    A response merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    A response merger defines the merger function needed to define a Finagle partitioning service for Thrift services.

    This is used for messaging fan-out, it merges a collection of successful responses and a collection of failures to a final response which matches the Thrift IDL definition. ResponseMerger is registered through ResponseMergerRegistry.

    Failing sub-responses are expected to be handled by the application (proper logging, exception handling, etc),

    for example:

    string example(1: i32 a)
    
    val responseMerger: ResponseMerger[String] = (successes, failures) =>
      if (successes.nonEmpty) Return(successes.mkString(";"))
      else Throw(failures.head)
  4. final class ResponseMergerRegistry extends AnyRef

    Maintain a map of method name to method's ResponseMerger.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped