Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8cf8794
chore: 更新解决方案增加扩展包
ArgoZhang Jun 20, 2025
c31b545
feat: 增加 ReceivedCallBack 回调方法
ArgoZhang Jun 20, 2025
7c39c48
test: 增加单元测试
ArgoZhang Jun 20, 2025
081236b
doc: 更新示例文档
ArgoZhang Jun 20, 2025
712e0dc
test: 增加 TouchSocket 单元测试
ArgoZhang Jun 20, 2025
d32f100
doc: 更新粘包分包文档
ArgoZhang Jun 20, 2025
4e78aba
feat: 增加 SendAsync 扩展方法
ArgoZhang Jun 20, 2025
52334b7
test: 增加单元测试
ArgoZhang Jun 20, 2025
a533852
Merge branch 'main' into feat-TouchSocket
ArgoZhang Jun 20, 2025
859b0cc
feat(tcp): 替换同步关闭方法为异步方法
RRQM Jun 20, 2025
82a93f4
refactor(tests): 使用异步方法关闭连接
RRQM Jun 20, 2025
517dc1f
doc: 更新数据处理器相关文档
ArgoZhang Jun 21, 2025
0f328a3
refactor: 增加 ConnectAsync 扩展方法
ArgoZhang Jun 21, 2025
336dd47
refactor: 更改关闭方法为同步方法
ArgoZhang Jun 21, 2025
93f68b6
test: 更新单元测试
ArgoZhang Jun 21, 2025
686e03b
Merge branch 'main' into feat-TouchSocket
ArgoZhang Jun 21, 2025
e23296f
doc: 增加数据适配器文档
ArgoZhang Jun 22, 2025
0f86b3c
doc: 增加新服务标记
ArgoZhang Jun 22, 2025
a2767ab
refactor: 更新 ITcpSocketFactory 接口定义
ArgoZhang Jun 22, 2025
60552bb
feat: 增加 GetOrCreate 扩展方法
ArgoZhang Jun 22, 2025
544fcd2
test: 更新单元测试
ArgoZhang Jun 22, 2025
d132af3
test: 增加单元测试
ArgoZhang Jun 22, 2025
66ab098
Merge branch 'main' into feat-TouchSocket
ArgoZhang Jun 23, 2025
0edee26
refactor: 更改 GetOrCreate 签名
ArgoZhang Jun 23, 2025
03bf822
test: 更新单元测试
ArgoZhang Jun 23, 2025
86a0333
refactor: 根据最新设计重构 TouchSocket 实现
ArgoZhang Jun 23, 2025
a97bc71
refactor: 整理项目文件
ArgoZhang Jun 23, 2025
7fc2eb1
Merge branch 'main' into feat-TouchSocket
ArgoZhang Jun 23, 2025
cc1a7ef
wip: 临时移除稍后再开分支合并到另外分支上
ArgoZhang Jun 23, 2025
1edbe34
chore: bump version 9.7.4-beta08
ArgoZhang Jun 23, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/BootstrapBlazor/BootstrapBlazor.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Razor">

<PropertyGroup>
<Version>9.7.4-beta09</Version>
<Version>9.7.4-beta08</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace BootstrapBlazor.Components;

[UnsupportedOSPlatform("browser")]
class DefaultTcpSocketClient(IPEndPoint endPoint) : ITcpSocketClient
sealed class DefaultTcpSocketClient(IPEndPoint endPoint) : ITcpSocketClient
{
private TcpClient? _client;
private IDataPackageHandler? _dataPackageHandler;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace BootstrapBlazor.Components;

[UnsupportedOSPlatform("browser")]
class DefaultTcpSocketFactory(IServiceProvider provider) : ITcpSocketFactory
sealed class DefaultTcpSocketFactory(IServiceProvider provider) : ITcpSocketFactory
{
private readonly ConcurrentDictionary<string, ITcpSocketClient> _pool = new();

Expand Down