//
// IClient.cs
//
// Copyright (c) František Boháček. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Data;
using Remora.Results;
namespace NosSmooth.Comms.Data;
///
/// An abstraction for a client connection.
///
public interface IClient : IConnection
{
///
/// Connect to the server.
///
/// The cancellation token used for cancelling the operation.
/// A result that may or may not have succeeded.
public Task ConnectAsync(CancellationToken ct = default);
}