1
我有必要從在當時進行的其他進程發送服務器端事件,我不知道該怎麼做))ServiceStack ServerEvents:從另一個進程發送事件
我將不勝感激任何幫助!
預先感謝您!
public override void Configure(Container container) {
...
container.Register(c => new DispatchService());
}
public class DispatchService {
.
public void SomeFunction(){
//here I want to send an event to the session
NotifySession(sspid, selector, message);
}
}