Skip to content

Commit 2cc6427

Browse files
authored
Merge pull request #896 from Cysharp/feature/Multicaster-1.0.0
Upgrade Multicaster to 1.0.0
2 parents 73c24cd + a149c53 commit 2cc6427

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<MessagePackVersion>3.1.1</MessagePackVersion>
1111
<MicrosoftCodeAnalysisVersion>4.3.1</MicrosoftCodeAnalysisVersion>
1212
<MicrosoftCodeAnalysisVersionUnity>3.9.0</MicrosoftCodeAnalysisVersionUnity>
13-
<MulticasterVersion>0.1.12</MulticasterVersion>
13+
<MulticasterVersion>1.0.0</MulticasterVersion>
1414
</PropertyGroup>
1515
<ItemGroup>
1616
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />

src/MagicOnion.Server/Hubs/Group.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ public Group(IMulticastAsyncGroup<Guid, T> group, string name)
2525
public T All
2626
=> group.All;
2727

28-
public T Except(ImmutableArray<Guid> excludes)
28+
public T Except(IEnumerable<Guid> excludes)
2929
=> group.Except(excludes);
3030

31-
public T Only(ImmutableArray<Guid> targets)
31+
public T Only(IEnumerable<Guid> targets)
3232
=> group.Only(targets);
3333

3434
public T Single(Guid target)

0 commit comments

Comments
 (0)