Skip to content

Commit

Permalink
feat: add service properties
Browse files Browse the repository at this point in the history
  • Loading branch information
ArachisH committed Mar 7, 2024
1 parent 4c7559a commit 8ef3ab7
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Tanji.Core/Services/IConnectionHandlerService.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
namespace Tanji.Core.Services;
using System.Collections.ObjectModel;

using Tanji.Core.Network;

namespace Tanji.Core.Services;

public interface IConnectionHandlerService
{
ObservableCollection<HConnection> Connections { get; }

Task<HConnection> LaunchAndInterceptConnectionAsync(string ticket, HConnectionContext options, CancellationToken cancellationToken = default);
}

0 comments on commit 8ef3ab7

Please sign in to comment.