You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
292 B
16 lines
292 B
using ConsoleApp1.intf;
|
|
|
|
namespace ConsoleApp1.pubsub.generics
|
|
{
|
|
|
|
public class ConsoleSubscriber<T> : Subscriber<T>, ISubscriber<T>
|
|
where T : IMessage
|
|
{
|
|
|
|
protected override void ObjFire(T sMsg)
|
|
{
|
|
Console.WriteLine(sMsg?.Text);
|
|
}
|
|
}
|
|
|
|
}
|