File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Cluster/TaskManagement/TasksList
CommonAbstractions/Infer/TaskId Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ namespace Nest
77 public partial interface IElasticClient
88 {
99 /// <summary>
10- /// Does a request to the root of an elasticsearch node
10+ /// Retrieve information about the tasks currently executing on one or more nodes in the cluster.
1111 /// </summary>
12- /// <param name="selector">A descriptor to further describe the root operation </param>
12+ /// <param name="selector">A descriptor to further describe the tasks to retrieve information for </param>
1313 ITasksListResponse TasksList ( Func < TasksListDescriptor , ITasksListRequest > selector = null ) ;
1414
1515 /// <inheritdoc/>
Original file line number Diff line number Diff line change @@ -6,15 +6,14 @@ namespace Nest
66{
77 public class TaskId : IUrlParameter , IEquatable < TaskId >
88 {
9-
109 public string NodeId { get ; }
1110 public long TaskNumber { get ; }
1211 public string FullyQualifiedId => $ "{ NodeId } :{ TaskNumber . ToString ( CultureInfo . InvariantCulture ) } ";
1312
1413 /// <summary>
15- /// A task id exists in the form < node_id>:< task_id>
14+ /// A task id exists in the form [ node_id]:[ task_id]
1615 /// </summary>
17- /// <param name="taskId"></param>
16+ /// <param name="taskId">the task identifier </param>
1817 public TaskId ( string taskId )
1918 {
2019 if ( string . IsNullOrWhiteSpace ( taskId ) )
You can’t perform that action at this time.
0 commit comments