The parallel\Future classFuturesA Future represents the return value or uncaught exception from a task, and exposes an API for cancellation. 例1 Example showing Future as return value
上の例の出力は、 たとえば以下のようになります。 Hello World The behaviour of a future also allows it to be used as a simple synchronization point even where the task does not return a value explicitly. 例2 Example showing Future as synchronization point
上の例の出力は、 たとえば以下のようになります。 in child .................................................. leaving child parent continues クラス概要parallel\Future
final
class parallel\Future
{
/* Resolution */
public mixed value()
/* State */
public bool cancelled()
public bool done()
/* Cancellation */
public bool cancel()
}
|