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
7
7
public partial interface IElasticClient
8
8
{
9
9
/// <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.
11
11
/// </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>
13
13
ITasksListResponse TasksList ( Func < TasksListDescriptor , ITasksListRequest > selector = null ) ;
14
14
15
15
/// <inheritdoc/>
Original file line number Diff line number Diff line change @@ -6,15 +6,14 @@ namespace Nest
6
6
{
7
7
public class TaskId : IUrlParameter , IEquatable < TaskId >
8
8
{
9
-
10
9
public string NodeId { get ; }
11
10
public long TaskNumber { get ; }
12
11
public string FullyQualifiedId => $ "{ NodeId } :{ TaskNumber . ToString ( CultureInfo . InvariantCulture ) } ";
13
12
14
13
/// <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]
16
15
/// </summary>
17
- /// <param name="taskId"></param>
16
+ /// <param name="taskId">the task identifier </param>
18
17
public TaskId ( string taskId )
19
18
{
20
19
if ( string . IsNullOrWhiteSpace ( taskId ) )
You can’t perform that action at this time.
0 commit comments