File tree 4 files changed +4
-4
lines changed
Agents/Agents/IOAgent/FileAgent
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 18
18
var app = await AgentsApp . PublishMessageAsync ( "HelloAgents" , new NewMessageReceived
19
19
{
20
20
Message = "World"
21
- } , local : false ) ;
21
+ } , local : true ) ;
22
22
23
23
await app . WaitForShutdownAsync ( ) ;
24
24
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public async Task Handle(NewMessageReceived item)
34
34
{
35
35
Message = response
36
36
} ;
37
- Dictionary < string , string > state = new ( )
37
+ Dictionary < string , string > state = new ( )
38
38
{
39
39
{ "data" , "We said hello to " + item . Message } ,
40
40
{ "workflow" , "Active" }
Original file line number Diff line number Diff line change 3
3
4
4
namespace Microsoft . AutoGen . Abstractions ;
5
5
6
- public interface IGateway : IGrainObserver
6
+ public interface IGateway : IGrainObserver
7
7
{
8
8
ValueTask < RpcResponse > InvokeRequest ( RpcRequest request , CancellationToken cancellationToken = default ) ;
9
9
ValueTask BroadcastEvent ( CloudEvent evt , CancellationToken cancellationToken = default ) ;
Original file line number Diff line number Diff line change @@ -75,4 +75,4 @@ public override Task ProcessOutput(string message)
75
75
}
76
76
public interface IUseFiles
77
77
{
78
- }
78
+ }
You can’t perform that action at this time.
0 commit comments