Class SctpStandardSocketOptions.InitMaxStreams
java.lang.Object
com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams
- Enclosing class:
SctpStandardSocketOptions
This class is used to set the maximum number of inbound/outbound streams
used by the local endpoint during association initialization. An
instance of this class is used to set the
SCTP_INIT_MAXSTREAMS
socket option.- Since:
- 1.7
-
Method Summary
Modifier and TypeMethodDescriptioncreate(int maxInStreams, int maxOutStreams) Creates an InitMaxStreams instance.booleanReturns true if the specified object is anotherInitMaxStreamsinstance with the same number of in and out bound streams.inthashCode()Returns a hash code value for this init max streams.intReturns the maximum number of inbound streams.intReturns the maximum number of outbound streams.toString()Returns a string representation of this init max streams, including the maximum in and out bound streams.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Method Details
-
create
Creates an InitMaxStreams instance.- Parameters:
maxInStreams- The maximum number of inbound streams, where0 <= maxInStreams <= 65536maxOutStreams- The maximum number of outbound streams, where0 <= maxOutStreams <= 65536- Returns:
- An
InitMaxStreamsinstance - Throws:
IllegalArgumentException- If an argument is outside of specified bounds
-
maxInStreams
public int maxInStreams()Returns the maximum number of inbound streams.- Returns:
- Maximum inbound streams
-
maxOutStreams
public int maxOutStreams()Returns the maximum number of outbound streams.- Returns:
- Maximum outbound streams
-
toString
-
equals
Returns true if the specified object is anotherInitMaxStreamsinstance with the same number of in and out bound streams. -
hashCode
-