mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-04 15:41:15 +00:00
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
![]() |
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// Checker.cs
|
||
|
|
||
|
using Microsoft.AutoGen.Contracts;
|
||
|
using Microsoft.AutoGen.Core;
|
||
|
using Microsoft.Extensions.Hosting;
|
||
|
using TerminationF = System.Func<int, bool>;
|
||
|
|
||
|
namespace Samples;
|
||
|
|
||
|
[TypeSubscription("default")]
|
||
|
public class Checker(
|
||
|
AgentId id,
|
||
|
IAgentRuntime runtime,
|
||
|
IHostApplicationLifetime hostApplicationLifetime,
|
||
|
TerminationF runUntilFunc
|
||
|
) :
|
||
|
BaseAgent(id, runtime, "Modifier", null),
|
||
|
IHandle<CountUpdate>
|
||
|
{
|
||
|
public async ValueTask HandleAsync(CountUpdate item, MessageContext messageContext)
|
||
|
{
|
||
|
if (!runUntilFunc(item.NewCount))
|
||
|
{
|
||
|
Console.WriteLine($"\nChecker:\n{item.NewCount} passed the check, continue.");
|
||
|
await this.PublishMessageAsync(new CountMessage { Content = item.NewCount }, new TopicId("default"));
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
Console.WriteLine($"\nChecker:\n{item.NewCount} failed the check, stopping.");
|
||
|
hostApplicationLifetime.StopApplication();
|
||
|
}
|
||
|
}
|
||
|
}
|