Questions tagged [service-fabric-stateless]

Use this tag for questions related to Stateless Azure Service Fabric . No state is maintained in the service.

Stateless Azure Service Fabric. No state is maintained in the service. Longer-term state is stored in an external database. This is your typical application/data layer approach to building services, and it is currently the norm in cloud applications.

References:

  1. Azure Service Fabric Documentation
  2. Service Fabric application scenarios discusses the difference between stateful and stateless Azure Service Fabric configurations and uses.
181 questions
-2
votes
1 answer

Terminate function running in a thread in c#?

I want to terminate a function running in a thread Thread t = new Thread(SomeFunction()) { Background = true; } This someFunction() is running in background and from some other function(e.g. . CancelSomeFunction()) I have to cancel this thread…
1 2 3
12
13