/// <summary>
        /// Creates a new service class instance with the given state manager and service parameters.
        /// </summary>
        /// <param name="stateManager"></param>
        /// <param name="serviceParameters"></param>
        public ApplicationDeployService(
            IReliableStateManager stateManager, IApplicationOperator applicationOperator, StatefulServiceParameters serviceParameters)
        {
            this.StateManager = stateManager;
            this.serviceParameters = serviceParameters;
            this.applicationOperator = applicationOperator;

            this.ConfigureService();
        }
Exemplo n.º 2
0
 public TenantManagerService(StatefulServiceContext context, IApplicationOperator applicationOperator)
     : base(context)
 {
     this.applicationOperator = applicationOperator;
 }
Exemplo n.º 3
0
 public Zip(IApplicationOperator _operator)
 {
     this.MyOperator = _operator;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Creates a new service class instance with the given state manager and service parameters.
 /// </summary>
 /// <param name="stateManager"></param>
 /// <param name="serviceContext"></param>
 public ApplicationDeployService(
     IReliableStateManager stateManager, IApplicationOperator applicationOperator, StatefulServiceContext serviceContext)
     : base(serviceContext, stateManager as IReliableStateManagerReplica)
 {
     this.applicationOperator = applicationOperator;
 }
 /// <summary>
 /// Creates a new service class instance with the given state manager and service parameters.
 /// </summary>
 /// <param name="stateManager"></param>
 /// <param name="serviceContext"></param>
 public ApplicationDeployService(
     IReliableStateManager stateManager, IApplicationOperator applicationOperator, StatefulServiceContext serviceContext)
     : base(serviceContext, stateManager as IReliableStateManagerReplica)
 {
     this.applicationOperator = applicationOperator;
 }
Exemplo n.º 6
0
 public ConoHaOperator(IApplicationOperator Core)
 {
     this.m_Core = Core;
 }
Exemplo n.º 7
0
 public TenantController(FabricClient fabricClient, IApplicationOperator applicationOperator)
 {
     this.fabricClient        = fabricClient;
     this.applicationOperator = applicationOperator;
 }