Skip to content

Commit 42191b8

Browse files
authored
Update ClockHub.cs
Make it clear that this method is called by clients only
1 parent 6d5dd85 commit 42191b8

File tree

1 file changed

+1
-1
lines changed
  • aspnetcore/signalr/background-service/samples/6.0/Server

1 file changed

+1
-1
lines changed

aspnetcore/signalr/background-service/samples/6.0/Server/ClockHub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Server;
66
#region ClockHub
77
public class ClockHub : Hub<IClock>
88
{
9-
public async Task SendTimeToClients(DateTime dateTime)
9+
public async Task SendMyLocalTimeToOtherClients(DateTime dateTime)
1010
{
1111
await Clients.All.ShowTime(dateTime);
1212
}

0 commit comments

Comments
 (0)