Exemplo n.º 1
0
 public CounterService(AspNetCoreCommunicationContext context)
 {
     _context = context;
     _semaphore = new SemaphoreSlim(1, 1);
 }
Exemplo n.º 2
0
 public GatewayService(StatelessServiceContext serviceContext, AspNetCoreCommunicationContext communicationContext)
     : base(serviceContext)
 {
     _communicationContext = communicationContext;
 }
Exemplo n.º 3
0
 public SmsService(StatefulServiceContext serviceContext, AspNetCoreCommunicationContext communicationContext)
     : base(serviceContext)
 {
     _communicationContext = communicationContext;
     _semaphore = new SemaphoreSlim(1, 1);
 }
Exemplo n.º 4
0
 public GatewayService(AspNetCoreCommunicationContext context)
 {
     _context = context;
 }