Class SctpStandardSocketOptions.InitMaxStreams
- java.lang.Object
-
- com.sun.nio.sctp.SctpStandardSocketOptions.InitMaxStreams
- Enclosing class:
- SctpStandardSocketOptions
public static class SctpStandardSocketOptions.InitMaxStreams extends Object
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
Methods
Modifier and Type | Method | Description |
---|---|---|
static SctpStandardSocketOptions.InitMaxStreams | create(int maxInStreams,
int maxOutStreams) | Creates an InitMaxStreams instance. |
boolean | equals(Object obj) | Returns true if the specified object is another |
int | hashCode() | Returns a hash code value for this init max streams. |
int | maxInStreams() | Returns the maximum number of inbound streams. |
int | maxOutStreams() | Returns the maximum number of outbound streams. |
String | toString() | Returns a string representation of this init max streams, including the maximum in and out bound streams. |
Methods declared in class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods
create
public static SctpStandardSocketOptions.InitMaxStreams create(int maxInStreams, int maxOutStreams)
Creates an InitMaxStreams instance.
- Parameters:
-
maxInStreams
- The maximum number of inbound streams, where0 <= maxInStreams <= 65536
-
maxOutStreams
- The maximum number of outbound streams, where0 <= maxOutStreams <= 65536
- Returns:
- An
InitMaxStreams
instance - 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
public String toString()
Returns a string representation of this init max streams, including the maximum in and out bound streams.
equals
public boolean equals(Object obj)
Returns true if the specified object is another InitMaxStreams
instance with the same number of in and out bound streams.
- Overrides:
-
equals
in classObject
- Parameters:
-
obj
- The object to be compared with this init max streams - Returns:
- true if the specified object is another
InitMaxStreams
instance with the same number of in and out bound streams - See Also:
-
Object.hashCode()
,HashMap
hashCode
public int hashCode()
Returns a hash code value for this init max streams.
- Overrides:
-
hashCode
in classObject
- Returns:
- a hash code value for this object.
- See Also:
-
Object.equals(java.lang.Object)
,System.identityHashCode(java.lang.Object)
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.sctp/com/sun/nio/sctp/SctpStandardSocketOptions.InitMaxStreams.html