Skip to content

Commit ae326cc

Browse files
committed
pull up the changes
1 parent 9ba14ee commit ae326cc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

dotnet/samples/Hello/Program.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,29 @@
1+
using Microsoft.Extensions.Hosting;
12
using Microsoft.AutoGen.Agents.Abstractions;
23
using Microsoft.AutoGen.Agents.Client;
34
using Microsoft.AutoGen.Agents.Runtime;
45
using Microsoft.Extensions.DependencyInjection;
5-
using Microsoft.Extensions.Hosting;
66

77
var builder = Host.CreateApplicationBuilder(args);
88
builder.AddAgentService();
9+
builder.Services.AddHostedService<AgentWorkerRuntime>();
10+
builder.Services.AddSingleton<AgentClient>();
911
builder.UseOrleans(siloBuilder =>
1012
{
1113
siloBuilder.UseLocalhostClustering(); ;
1214
});
1315
builder.AddAgentWorker("https://localhost:5000");
1416
var app = builder.Build();
1517
await app.StartAsync();
18+
AgentClient client = app.Services.GetRequiredService<AgentClient>();
1619
app.Services.GetRequiredService<AgentWorkerRuntime>();
20+
//send our hello message event via cloud events
1721
var evt = new NewMessageReceived
1822
{
1923
Message = "World"
2024
}.ToCloudEvent("HelloAgents");
25+
26+
await client.PublishEventAsync(evt);
2127
await app.WaitForShutdownAsync();
2228

2329
[TopicSubscription("HelloAgents")]
@@ -59,4 +65,4 @@ public async Task<string> SayHello(string ask)
5965
public interface ISayHello
6066
{
6167
public Task<string> SayHello(string ask);
62-
}
68+
}

0 commit comments

Comments
 (0)