Class/Object

com.comcast.ip4s

MulticastJoin

Related Docs: object MulticastJoin | package ip4s

Permalink

sealed abstract class MulticastJoin[+A <: IpAddress] extends Product with Serializable

Represents a join of a multicast group.

This is represented as an ADT consisting of two constructors, AnySourceMulticastJoin and SourceSpecificMulticastJoin. These constructors are provided as top level types to allow domain modeling where a specific join type is required. The address type is parameterized for a similar reason -- to allow domain modeling where a specific address type is required.

Source
MulticastJoin.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MulticastJoin
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def canEqual(that: Any): Boolean

    Permalink
    Definition Classes
    Equals
  2. abstract def productArity: Int

    Permalink
    Definition Classes
    Product
  3. abstract def productElement(n: Int): Any

    Permalink
    Definition Classes
    Product

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to any2stringadd[MulticastJoin[A]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MulticastJoin[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to ArrowAssoc[MulticastJoin[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def asAsm: Option[AnySourceMulticastJoin[A]]

    Permalink

    Narrows to an AnySourceMulticastJoin.

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def asSsm: Option[SourceSpecificMulticastJoin[A]]

    Permalink

    Narrows to a SourceSpecificMulticastJoin.

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def ensuring(cond: (MulticastJoin[A]) ⇒ Boolean, msg: ⇒ Any): MulticastJoin[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to Ensuring[MulticastJoin[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (MulticastJoin[A]) ⇒ Boolean): MulticastJoin[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to Ensuring[MulticastJoin[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: ⇒ Any): MulticastJoin[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to Ensuring[MulticastJoin[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): MulticastJoin[A]

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to Ensuring[MulticastJoin[A]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def fold[B](asm: (AnySourceMulticastJoin[A]) ⇒ B, ssm: (SourceSpecificMulticastJoin[A]) ⇒ B): B

    Permalink

    Converts this join to a value of type A using the supplied functions.

  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to StringFormat[MulticastJoin[A]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def productIterator: Iterator[Any]

    Permalink
    Definition Classes
    Product
  26. def productPrefix: String

    Permalink
    Definition Classes
    Product
  27. def sourceAndGroup: (Option[A], Multicast[A])

    Permalink

    Returns the source address and group address.

    Returns the source address and group address. If this join is an any-source join, None is returned for the source. Otherwise, this join is a source specific join and Some(src) is returned for the source.

  28. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    MulticastJoin → AnyRef → Any
  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def [B](y: B): (MulticastJoin[A], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from MulticastJoin[A] to ArrowAssoc[MulticastJoin[A]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from MulticastJoin[A] to any2stringadd[MulticastJoin[A]]

Inherited by implicit conversion StringFormat from MulticastJoin[A] to StringFormat[MulticastJoin[A]]

Inherited by implicit conversion Ensuring from MulticastJoin[A] to Ensuring[MulticastJoin[A]]

Inherited by implicit conversion ArrowAssoc from MulticastJoin[A] to ArrowAssoc[MulticastJoin[A]]

Ungrouped