Exemplo n.º 1
0
 public NodeController(IServiceFabricQuery query)
 {
     this.query = query;
 }
Exemplo n.º 2
0
 public ClusterController(IServiceFabricQuery query, IReliableStateManager stateManager)
 {
     this.query        = query;
     this.stateManager = stateManager;
 }
Exemplo n.º 3
0
 public ApplicationController(IServiceFabricQuery query, IReliableStateManager stateManager)
 {
     this.query        = query;
     this.stateManager = stateManager;
 }
Exemplo n.º 4
0
 public DataService(StatefulServiceContext context, IReliableStateManagerReplica stateManager, IServiceFabricQuery query)
     : base(context, stateManager)
 {
     this.query = query;
 }