Property TaskId
TaskId
Unique GUID identification of MapReduce task.
Declaration
string TaskId { get; }
Property Value
Type | Description |
---|---|
System.String |
Examples
Example prints task id
ITrackableTask taskTracker = cache.ExecuteTask(prodAggregatorTask, new OrderKeyFilter());
Console.WriteLine("Task Id: " + taskTracker.TaskId);