AbstractExecutorService.NewTaskFor Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
NewTaskFor(ICallable) |
Restituisce un oggetto |
NewTaskFor(IRunnable, Object) |
Restituisce un |
NewTaskFor(ICallable)
Restituisce un oggetto RunnableFuture
per l'attività chiamabile specificata.
[Android.Runtime.Register("newTaskFor", "(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/RunnableFuture;", "GetNewTaskFor_Ljava_util_concurrent_Callable_Handler")]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
protected virtual Java.Util.Concurrent.IRunnableFuture? NewTaskFor (Java.Util.Concurrent.ICallable? callable);
[<Android.Runtime.Register("newTaskFor", "(Ljava/util/concurrent/Callable;)Ljava/util/concurrent/RunnableFuture;", "GetNewTaskFor_Ljava_util_concurrent_Callable_Handler")>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
abstract member NewTaskFor : Java.Util.Concurrent.ICallable -> Java.Util.Concurrent.IRunnableFuture
override this.NewTaskFor : Java.Util.Concurrent.ICallable -> Java.Util.Concurrent.IRunnableFuture
Parametri
- callable
- ICallable
l'attività chiamabile di cui viene eseguito il wrapping
Restituisce
oggetto RunnableFuture
che, quando viene eseguito, chiamerà il chiamabile sottostante e che, come , Future
restituirà il risultato del chiamabile come risultato e fornirà l'annullamento dell'attività sottostante
- Attributi
Commenti
Restituisce un oggetto RunnableFuture
per l'attività chiamabile specificata.
Aggiunta nella versione 1.6.
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.
Si applica a
NewTaskFor(IRunnable, Object)
Restituisce un RunnableFuture
oggetto per il valore predefinito e eseguibile specificato.
[Android.Runtime.Register("newTaskFor", "(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/RunnableFuture;", "GetNewTaskFor_Ljava_lang_Runnable_Ljava_lang_Object_Handler")]
[Java.Interop.JavaTypeParameters(new System.String[] { "T" })]
protected virtual Java.Util.Concurrent.IRunnableFuture? NewTaskFor (Java.Lang.IRunnable? runnable, Java.Lang.Object? value);
[<Android.Runtime.Register("newTaskFor", "(Ljava/lang/Runnable;Ljava/lang/Object;)Ljava/util/concurrent/RunnableFuture;", "GetNewTaskFor_Ljava_lang_Runnable_Ljava_lang_Object_Handler")>]
[<Java.Interop.JavaTypeParameters(new System.String[] { "T" })>]
abstract member NewTaskFor : Java.Lang.IRunnable * Java.Lang.Object -> Java.Util.Concurrent.IRunnableFuture
override this.NewTaskFor : Java.Lang.IRunnable * Java.Lang.Object -> Java.Util.Concurrent.IRunnableFuture
Parametri
- runnable
- IRunnable
l'attività eseguibile di cui viene eseguito il wrapping
- value
- Object
valore predefinito per il futuro restituito
Restituisce
oggetto RunnableFuture
che, quando viene eseguito, eseguirà l'eseguibile sottostante e che, come , Future
restituirà il valore specificato come risultato e fornirà l'annullamento dell'attività sottostante
- Attributi
Commenti
Restituisce un RunnableFuture
oggetto per il valore predefinito e eseguibile specificato.
Aggiunta nella versione 1.6.
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.