Skip to content

Commit

Permalink
docs: update xml-doc
Browse files Browse the repository at this point in the history
  • Loading branch information
aneojgurhem committed Sep 19, 2023
1 parent 0b9fe5f commit 8393b6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions Common/src/Pollster/DataPrefetcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.

using System;
using System.Diagnostics;
using System.IO;
using System.Threading;
Expand Down Expand Up @@ -79,13 +78,12 @@ await objectStorage_.Init(cancellationToken)
/// Method used to prefetch data before executing a task
/// </summary>
/// <param name="taskData">Task metadata</param>
/// <param name="folder"></param>
/// <param name="folder">Path in which pre-fetched data are stored</param>
/// <param name="cancellationToken">Token used to cancel the execution of the method</param>
/// <returns>
/// Queue containing the request containing the data for the task which can be sent to the worker
/// Task representing the asynchronous execution of the method
/// </returns>
/// <exception cref="ObjectDataNotFoundException">input data are not found</exception>
/// <exception cref="InvalidOperationException">invalid transition between states</exception>
public async Task PrefetchDataAsync(TaskData taskData,
string folder,
CancellationToken cancellationToken)
Expand Down
2 changes: 1 addition & 1 deletion Common/src/gRPC/Services/Agent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public sealed class Agent : IAgent
/// <param name="taskTable">Interface to manage task states</param>
/// <param name="sessionData">Data of the session</param>
/// <param name="taskData">Data of the task</param>
/// <param name="folder"></param>
/// <param name="folder">Shared folder between Agent and Worker</param>
/// <param name="token">Token send to the worker to identify the running task</param>
/// <param name="logger">Logger used to produce logs for this class</param>
public Agent(ISubmitter submitter,
Expand Down

0 comments on commit 8393b6f

Please sign in to comment.