Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 jdk.sctp.jmod - SCTP Module
JDK 11 jdk.sctp.jmod is the JMOD file for JDK 11 SCTP module.
JDK 11 SCTP module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.sctp.jmod.
JDK 11 SCTP module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 SCTP module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.sctp.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/nio/sctp/Association.java
/* * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package com.sun.nio.sctp; /** * A class that represents an SCTP association. * * <P> An association exists between two SCTP endpoints. Each endpoint is * represented by a list of transport addresses through which that endpoint can * be reached and from which it will originate SCTP messages. The association * spans over all of the possible source/destination combinations which may be * generated from each endpoint's lists of addresses. * * <P> Associations are identified by their Association ID. * Association ID's are guaranteed to be unique for the lifetime of the * association. An association ID may be reused after the association has been * shutdown. An association ID is not unique across multiple SCTP channels. * An Association's local and remote addresses may change if the SCTP * implementation supports <I>Dynamic Address Reconfiguration</I> as defined by * <A HREF="http://tools.ietf.org/html/rfc5061">RFC5061</A>, see the * {@code bindAddress} and {@code unbindAddress} methods of {@link SctpChannel}, * {@link SctpServerChannel}, and {@link SctpMultiChannel}. * * <P> An {@code Association} is returned from an {@link * SctpChannel#association SctpChannel} or an {@link * SctpMultiChannel#associations SctpMultiChannel}, as well * as being given as a parameter to {@link NotificationHandler * NotificationHandler} methods. * * @since 1.7 */ public class Association { private final int associationID; private final int maxInStreams; private final int maxOutStreams; /** * Initializes a new instance of this class. * * @param associationID * The association ID * @param maxInStreams * The maximum number of inbound streams * @param maxOutStreams * The maximum number of outbound streams */ protected Association(int associationID, int maxInStreams, int maxOutStreams) { this.associationID = associationID; this.maxInStreams = maxInStreams; this.maxOutStreams = maxOutStreams; } /** * Returns the associationID. * * @return The association ID */ public final int associationID() { return associationID; }; /** * Returns the maximum number of inbound streams that this association * supports. * * <P> Data received on this association will be on stream number * {@code s}, where {@code 0 <= s < maxInboundStreams()}. * * @return The maximum number of inbound streams */ public final int maxInboundStreams() { return maxInStreams; }; /** * Returns the maximum number of outbound streams that this association * supports. * * <P> Data sent on this association must be on stream number * {@code s}, where {@code 0 <= s < maxOutboundStreams()}. * * @return The maximum number of outbound streams */ public final int maxOutboundStreams() { return maxOutStreams; }; }
⏎ com/sun/nio/sctp/Association.java
Or download all of them as a single archive file:
File name: jdk.sctp-11.0.1-src.zip File size: 41822 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.security.auth.jmod - Security Auth Module
⇐ JDK 11 jdk.scripting.nashorn.shell.jmod - Scripting Nashorn Shell Module
2020-04-14, 10260👍, 0💬
Popular Posts:
What Is wstx-asl-3.2.8.jar? wstx-asl-3.2.8.jar is JAR file for the ASL component of Woodstox 3.2.8. ...
commons-collections4-4.4 -sources.jaris the source JAR file for Apache Commons Collections 4.2, whic...
What Is javamail-1_2.zip? javamail-1_2.zip is the binary package of JavaMail API 1.2 in ZIP format. ...
What Is commons-lang3-3.1.jar? commons-lang3-3.1.jar is the JAR file for Apache Commons Lang 3.1, wh...
commons-fileupload-1.3.3 -sources.jaris the source JAR file for Apache Commons FileUpload 1.3., whic...