Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
java.nio.channels

Class SelectionKey

  • Direct Known Subclasses:
    AbstractSelectionKey

    public abstract class SelectionKey
    extends Object
    A token representing the registration of a SelectableChannel with a Selector.

    A selection key is created each time a channel is registered with a selector. A key remains valid until it is cancelled by invoking its cancel method, by closing its channel, or by closing its selector. Cancelling a key does not immediately remove it from its selector; it is instead added to the selector's cancelled-key set for removal during the next selection operation. The validity of a key may be tested by invoking its isValid method.

    A selection key contains two operation sets represented as integer values. Each bit of an operation set denotes a category of selectable operations that are supported by the key's channel.

    That a selection key's ready set indicates that its channel is ready for some operation category is a hint, but not a guarantee, that an operation in such a category may be performed by a thread without causing the thread to block. A ready set is most likely to be accurate immediately after the completion of a selection operation. It is likely to be made inaccurate by external events and by I/O operations that are invoked upon the corresponding channel.

    This class defines all known operation-set bits, but precisely which bits are supported by a given channel depends upon the type of the channel. Each subclass of SelectableChannel defines an validOps() method which returns a set identifying just those operations that are supported by the channel. An attempt to set or test an operation-set bit that is not supported by a key's channel will result in an appropriate run-time exception.

    It is often necessary to associate some application-specific data with a selection key, for example an object that represents the state of a higher-level protocol and handles readiness notifications in order to implement that protocol. Selection keys therefore support the attachment of a single arbitrary object to a key. An object can be attached via the attach method and then later retrieved via the attachment method.

    Selection keys are safe for use by multiple concurrent threads. The operations of reading and writing the interest set will, in general, be synchronized with certain operations of the selector. Exactly how this synchronization is performed is implementation-dependent: In a naive implementation, reading or writing the interest set may block indefinitely if a selection operation is already in progress; in a high-performance implementation, reading or writing the interest set may block briefly, if at all. In any case, a selection operation will always use the interest-set value that was current at the moment that the operation began.

    Since:
    1.4
    See Also:
    SelectableChannel, Selector
    • Field Detail

      • OP_READ

        public static final int OP_READ
        Operation-set bit for read operations.

        Suppose that a selection key's interest set contains OP_READ at the start of a selection operation. If the selector detects that the corresponding channel is ready for reading, has reached end-of-stream, has been remotely shut down for further reading, or has an error pending, then it will add OP_READ to the key's ready-operation set and add the key to its selected-key set.

        See Also:
        Constant Field Values
      • OP_WRITE

        public static final int OP_WRITE
        Operation-set bit for write operations.

        Suppose that a selection key's interest set contains OP_WRITE at the start of a selection operation. If the selector detects that the corresponding channel is ready for writing, has been remotely shut down for further writing, or has an error pending, then it will add OP_WRITE to the key's ready set and add the key to its selected-key set.

        See Also:
        Constant Field Values
      • OP_CONNECT

        public static final int OP_CONNECT
        Operation-set bit for socket-connect operations.

        Suppose that a selection key's interest set contains OP_CONNECT at the start of a selection operation. If the selector detects that the corresponding socket channel is ready to complete its connection sequence, or has an error pending, then it will add OP_CONNECT to the key's ready set and add the key to its selected-key set.

        See Also:
        Constant Field Values
      • OP_ACCEPT

        public static final int OP_ACCEPT
        Operation-set bit for socket-accept operations.

        Suppose that a selection key's interest set contains OP_ACCEPT at the start of a selection operation. If the selector detects that the corresponding server-socket channel is ready to accept another connection, or has an error pending, then it will add OP_ACCEPT to the key's ready set and add the key to its selected-key set.

        See Also:
        Constant Field Values
    • Constructor Detail

      • SelectionKey

        protected SelectionKey()
        Constructs an instance of this class.
    • Method Detail

      • channel

        public abstract SelectableChannel channel()
        Returns the channel for which this key was created. This method will continue to return the channel even after the key is cancelled.

        Returns:
        This key's channel
      • selector

        public abstract Selector selector()
        Returns the selector for which this key was created. This method will continue to return the selector even after the key is cancelled.

        Returns:
        This key's selector
      • isValid

        public abstract boolean isValid()
        Tells whether or not this key is valid.

        A key is valid upon creation and remains so until it is cancelled, its channel is closed, or its selector is closed.

        Returns:
        true if, and only if, this key is valid
      • cancel

        public abstract void cancel()
        Requests that the registration of this key's channel with its selector be cancelled. Upon return the key will be invalid and will have been added to its selector's cancelled-key set. The key will be removed from all of the selector's key sets during the next selection operation.

        If this key has already been cancelled then invoking this method has no effect. Once cancelled, a key remains forever invalid.

        This method may be invoked at any time. It synchronizes on the selector's cancelled-key set, and therefore may block briefly if invoked concurrently with a cancellation or selection operation involving the same selector.

      • interestOps

        public abstract int interestOps()
        Retrieves this key's interest set.

        It is guaranteed that the returned set will only contain operation bits that are valid for this key's channel.

        This method may be invoked at any time. Whether or not it blocks, and for how long, is implementation-dependent.

        Returns:
        This key's interest set
        Throws:
        CancelledKeyException - If this key has been cancelled
      • interestOps

        public abstract SelectionKey interestOps(int ops)
        Sets this key's interest set to the given value.

        This method may be invoked at any time. Whether or not it blocks, and for how long, is implementation-dependent.

        Parameters:
        ops - The new interest set
        Returns:
        This selection key
        Throws:
        IllegalArgumentException - If a bit in the set does not correspond to an operation that is supported by this key's channel, that is, if (ops & ~channel().validOps()) != 0
        CancelledKeyException - If this key has been cancelled
      • readyOps

        public abstract int readyOps()
        Retrieves this key's ready-operation set.

        It is guaranteed that the returned set will only contain operation bits that are valid for this key's channel.

        Returns:
        This key's ready-operation set
        Throws:
        CancelledKeyException - If this key has been cancelled
      • isReadable

        public final boolean isReadable()
        Tests whether this key's channel is ready for reading.

        An invocation of this method of the form k.isReadable() behaves in exactly the same way as the expression

         k.readyOps() & OP_READ != 0

        If this key's channel does not support read operations then this method always returns false.

        Returns:
        true if, and only if, readyOps() & OP_READ is nonzero
        Throws:
        CancelledKeyException - If this key has been cancelled
      • isWritable

        public final boolean isWritable()
        Tests whether this key's channel is ready for writing.

        An invocation of this method of the form k.isWritable() behaves in exactly the same way as the expression

         k.readyOps() & OP_WRITE != 0

        If this key's channel does not support write operations then this method always returns false.

        Returns:
        true if, and only if, readyOps() & OP_WRITE is nonzero
        Throws:
        CancelledKeyException - If this key has been cancelled
      • isConnectable

        public final boolean isConnectable()
        Tests whether this key's channel has either finished, or failed to finish, its socket-connection operation.

        An invocation of this method of the form k.isConnectable() behaves in exactly the same way as the expression

         k.readyOps() & OP_CONNECT != 0

        If this key's channel does not support socket-connect operations then this method always returns false.

        Returns:
        true if, and only if, readyOps() & OP_CONNECT is nonzero
        Throws:
        CancelledKeyException - If this key has been cancelled
      • isAcceptable

        public final boolean isAcceptable()
        Tests whether this key's channel is ready to accept a new socket connection.

        An invocation of this method of the form k.isAcceptable() behaves in exactly the same way as the expression

         k.readyOps() & OP_ACCEPT != 0

        If this key's channel does not support socket-accept operations then this method always returns false.

        Returns:
        true if, and only if, readyOps() & OP_ACCEPT is nonzero
        Throws:
        CancelledKeyException - If this key has been cancelled
      • attach

        public final Object attach(Object ob)
        Attaches the given object to this key.

        An attached object may later be retrieved via the attachment method. Only one object may be attached at a time; invoking this method causes any previous attachment to be discarded. The current attachment may be discarded by attaching null.

        Parameters:
        ob - The object to be attached; may be null
        Returns:
        The previously-attached object, if any, otherwise null
      • attachment

        public final Object attachment()
        Retrieves the current attachment.

        Returns:
        The object currently attached to this key, or null if there is no attachment

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/nio/channels/SelectionKey.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut