org.vertx.scala.core

ServerTCPSupport

trait ServerTCPSupport extends Self with TCPSupport

Supports org.vertx.java.core.ServerTCPSupport functionality.

Linear Supertypes
TCPSupport, NetworkSupport, AsJava, Self, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ServerTCPSupport
  2. TCPSupport
  3. NetworkSupport
  4. AsJava
  5. Self
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. abstract type J <: java.core.ServerTCPSupport[_]

    The internal type of the Java wrapped class.

    The internal type of the Java wrapped class.

    Definition Classes
    ServerTCPSupportTCPSupportNetworkSupport → AsJava

Abstract Value Members

  1. abstract val asJava: J

    The internal instance of the Java wrapped class.

    The internal instance of the Java wrapped class.

    Definition Classes
    AsJava

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

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

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

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

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. def getAcceptBacklog: Int

    returns

    The accept backlog

  12. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  13. def getReceiveBufferSize: Int

    returns

    The receive buffer size

    Definition Classes
    NetworkSupport
  14. def getSendBufferSize: Int

    returns

    The send buffer size

    Definition Classes
    NetworkSupport
  15. def getSoLinger: Int

    returns

    the value of TCP so linger

    Definition Classes
    TCPSupport
  16. def getTrafficClass: Int

    returns

    the value of traffic class

    Definition Classes
    NetworkSupport
  17. def hashCode(): Int

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

    Definition Classes
    Any
  19. def isReuseAddress: Boolean

    returns

    The value of reuse address

    Definition Classes
    NetworkSupport
  20. def isTCPKeepAlive: Boolean

    returns

    true if TCP keep alive is enabled

    Definition Classes
    TCPSupport
  21. def isTCPNoDelay: Boolean

    returns

    true if Nagle's algorithm is disabled.

    Definition Classes
    TCPSupport
  22. def isUsePooledBuffers: Boolean

    returns

    true if pooled buffers are used

    Definition Classes
    TCPSupport
  23. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. def setAcceptBacklog(backlog: Int): ServerTCPSupport.this.type

    Set the accept backlog

    Set the accept backlog

    returns

    a reference to this so multiple method calls can be chained together

  27. def setReceiveBufferSize(size: Int): ServerTCPSupport.this.type

    Set the receive buffer size for connections created by this instance to size in bytes.

    Set the receive buffer size for connections created by this instance to size in bytes.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    NetworkSupport
  28. def setReuseAddress(reuse: Boolean): ServerTCPSupport.this.type

    Set the reuseAddress setting for connections created by this instance to reuse.

    Set the reuseAddress setting for connections created by this instance to reuse.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    NetworkSupport
  29. def setSendBufferSize(size: Int): ServerTCPSupport.this.type

    Set the send buffer size for connections created by this instance to size in bytes.

    Set the send buffer size for connections created by this instance to size in bytes.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    NetworkSupport
  30. def setSoLinger(linger: Int): ServerTCPSupport.this.type

    Set the TCP soLinger setting for connections created by this instance to linger.

    Set the TCP soLinger setting for connections created by this instance to linger. Using a negative value will disable soLinger.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    TCPSupport
  31. def setTCPKeepAlive(keepAlive: Boolean): ServerTCPSupport.this.type

    Set the TCP keepAlive setting for connections created by this instance to keepAlive.

    Set the TCP keepAlive setting for connections created by this instance to keepAlive.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    TCPSupport
  32. def setTCPNoDelay(tcpNoDelay: Boolean): ServerTCPSupport.this.type

    If tcpNoDelay is set to true then Nagle's algorithm will turned off for the TCP connections created by this instance.

    If tcpNoDelay is set to true then Nagle's algorithm will turned off for the TCP connections created by this instance.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    TCPSupport
  33. def setTrafficClass(trafficClass: Int): ServerTCPSupport.this.type

    Set the trafficClass setting for connections created by this instance to trafficClass.

    Set the trafficClass setting for connections created by this instance to trafficClass.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    NetworkSupport
  34. def setUsePooledBuffers(pooledBuffers: Boolean): ServerTCPSupport.this.type

    Set if vertx should use pooled buffers for performance reasons.

    Set if vertx should use pooled buffers for performance reasons. Doing so will give the best throughput but may need a bit higher memory footprint.

    returns

    a reference to this so multiple method calls can be chained together

    Definition Classes
    TCPSupport
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toString(): String

    Definition Classes
    AnyRef → Any
  37. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def wrap[X](doStuff: ⇒ X): ServerTCPSupport.this.type

    Helper method wrapping invocations and returning the Scala type, once again to help provide fluent return types

    Helper method wrapping invocations and returning the Scala type, once again to help provide fluent return types

    Attributes
    protected[this]
    Definition Classes
    Self

Inherited from TCPSupport

Inherited from NetworkSupport

Inherited from AsJava

Inherited from Self

Inherited from AnyRef

Inherited from Any

Ungrouped