Skip to content

Commit

Permalink
Merge pull request #896 from Cysharp/feature/Multicaster-1.0.0
Browse files Browse the repository at this point in the history
Upgrade Multicaster to 1.0.0
  • Loading branch information
mayuki authored Jan 10, 2025
2 parents 73c24cd + a149c53 commit 2cc6427
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<MessagePackVersion>3.1.1</MessagePackVersion>
<MicrosoftCodeAnalysisVersion>4.3.1</MicrosoftCodeAnalysisVersion>
<MicrosoftCodeAnalysisVersionUnity>3.9.0</MicrosoftCodeAnalysisVersionUnity>
<MulticasterVersion>0.1.12</MulticasterVersion>
<MulticasterVersion>1.0.0</MulticasterVersion>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />
Expand Down
4 changes: 2 additions & 2 deletions src/MagicOnion.Server/Hubs/Group.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ public Group(IMulticastAsyncGroup<Guid, T> group, string name)
public T All
=> group.All;

public T Except(ImmutableArray<Guid> excludes)
public T Except(IEnumerable<Guid> excludes)
=> group.Except(excludes);

public T Only(ImmutableArray<Guid> targets)
public T Only(IEnumerable<Guid> targets)
=> group.Only(targets);

public T Single(Guid target)
Expand Down

0 comments on commit 2cc6427

Please sign in to comment.