Combine

final case class Combine[+Msg](sub1: Sub[Msg], sub2: Sub[Msg]) extends Sub[Msg]

Merge two subscriptions into a single one

trait Serializable
trait Product
trait Equals
trait Sub[Msg]
class Object
trait Matchable
class Any

Value members

Concrete methods

def map[OtherMsg](f: Msg => OtherMsg): Sub[OtherMsg]

Inherited methods

final def combine[LubMsg >: Msg](sub2: Sub[LubMsg]): Sub[LubMsg]

Merges the notifications of this subscription and sub2

Merges the notifications of this subscription and sub2

Inherited from:
Sub
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
final def |+|[LubMsg >: Msg](sub2: Sub[LubMsg]): Sub[LubMsg]
Inherited from:
Sub