ICompletionService.Poll Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Poll() |
Récupère et supprime l’avenir représentant la tâche terminée suivante, ou |
Poll(Int64, TimeUnit) |
Récupère et supprime l’avenir représentant la tâche terminée suivante, en attendant si nécessaire jusqu’au délai d’attente spécifié si aucun n’est encore présent. |
Poll()
Récupère et supprime l’avenir représentant la tâche terminée suivante, ou null
si aucune n’est présente.
[Android.Runtime.Register("poll", "()Ljava/util/concurrent/Future;", "GetPollHandler:Java.Util.Concurrent.ICompletionServiceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Util.Concurrent.IFuture? Poll ();
[<Android.Runtime.Register("poll", "()Ljava/util/concurrent/Future;", "GetPollHandler:Java.Util.Concurrent.ICompletionServiceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Poll : unit -> Java.Util.Concurrent.IFuture
Retours
l’avenir représentant la tâche terminée suivante, ou null
si aucun n’est présent
- Attributs
Remarques
Récupère et supprime l’avenir représentant la tâche terminée suivante, ou null
si aucune n’est présente.
Documentation Java pour java.util.concurrent.CompletionService.poll()
.
Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.
S’applique à
Poll(Int64, TimeUnit)
Récupère et supprime l’avenir représentant la tâche terminée suivante, en attendant si nécessaire jusqu’au délai d’attente spécifié si aucun n’est encore présent.
[Android.Runtime.Register("poll", "(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Future;", "GetPoll_JLjava_util_concurrent_TimeUnit_Handler:Java.Util.Concurrent.ICompletionServiceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public Java.Util.Concurrent.IFuture? Poll (long timeout, Java.Util.Concurrent.TimeUnit? unit);
[<Android.Runtime.Register("poll", "(JLjava/util/concurrent/TimeUnit;)Ljava/util/concurrent/Future;", "GetPoll_JLjava_util_concurrent_TimeUnit_Handler:Java.Util.Concurrent.ICompletionServiceInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Poll : int64 * Java.Util.Concurrent.TimeUnit -> Java.Util.Concurrent.IFuture
Paramètres
- timeout
- Int64
combien de temps attendre avant de renoncer, en unités de unit
- unit
- TimeUnit
déterminer TimeUnit
comment interpréter le timeout
paramètre
Retours
l’avenir représentant la tâche terminée suivante ou null
si le temps d’attente spécifié s’écoule avant qu’il soit présent
- Attributs
Exceptions
en cas d’interruption lors de l’attente
Remarques
Récupère et supprime l’avenir représentant la tâche terminée suivante, en attendant si nécessaire jusqu’au délai d’attente spécifié si aucun n’est encore présent.
Les parties de cette page sont des modifications basées sur le travail créé et partagé par le projet Android Open Source et utilisés en fonction des termes décrits dans la licence d’attribution Creative Commons 2.5.