-
- All Superinterfaces:
- AutoCloseable, Channel, Closeable
- All Known Subinterfaces:
- AsynchronousByteChannel
- All Known Implementing Classes:
- AsynchronousFileChannel, AsynchronousServerSocketChannel, AsynchronousSocketChannel
public interface AsynchronousChannel extends Channel
A channel that supports asynchronous I/O operations. Asynchronous I/O operations will usually take one of two forms:Future
<V> operation(...)void operation(... A attachment,
CompletionHandler
<V,? super A> handler)
CompletionHandler
is used to consume the result of many I/O operations.In the first form, the methods defined by the
Future
interface may be used to check if the operation has completed, wait for its completion, and to retrieve the result. In the second form, aCompletionHandler
is invoked to consume the result of the I/O operation when it completes or fails.A channel that implements this interface is asynchronously closeable: If an I/O operation is outstanding on the channel and the channel's
close
method is invoked, then the I/O operation fails with the exceptionAsynchronousCloseException
.Asynchronous channels are safe for use by multiple concurrent threads. Some channel implementations may support concurrent reading and writing, but may not allow more than one read and one write operation to be outstanding at any given time.
Cancellation
The
Future
interface defines thecancel
method to cancel execution. This causes all threads waiting on the result of the I/O operation to throwCancellationException
. Whether the underlying I/O operation can be cancelled is highly implementation specific and therefore not specified. Where cancellation leaves the channel, or the entity to which it is connected, in an inconsistent state, then the channel is put into an implementation specific error state that prevents further attempts to initiate I/O operations that are similar to the operation that was cancelled. For example, if a read operation is cancelled but the implementation cannot guarantee that bytes have not been read from the channel then it puts the channel into an error state; further attempts to initiate aread
operation cause an unspecified runtime exception to be thrown. Similarly, if a write operation is cancelled but the implementation cannot guarantee that bytes have not been written to the channel then subsequent attempts to initiate awrite
will fail with an unspecified runtime exception.Where the
cancel
method is invoked with themayInterruptIfRunning
parameter set totrue
then the I/O operation may be interrupted by closing the channel. In that case all threads waiting on the result of the I/O operation throwCancellationException
and any other I/O operations outstanding on the channel complete with the exceptionAsynchronousCloseException
.Where the
cancel
method is invoked to cancel read or write operations then it is recommended that all buffers used in the I/O operations be discarded or care taken to ensure that the buffers are not accessed while the channel remains open.- Since:
- 1.7
-
-
Method Detail
-
close
void close() throws IOException
Closes this channel.Any outstanding asynchronous operations upon this channel will complete with the exception
AsynchronousCloseException
. After a channel is closed, further attempts to initiate asynchronous I/O operations complete immediately with causeClosedChannelException
.This method otherwise behaves exactly as specified by the
Channel
interface.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceChannel
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
- If an I/O error occurs
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/nio/channels/AsynchronousChannel.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.