Exemple #1
0
        public ValuesController(StatelessServiceContext context)
        {
            _correlationId = Guid.NewGuid().ToString();
            _logger        = new WebApiLogger(context);
            _servicesCommunicationLogger = new ServicesCommunicationLogger(context);

            _partitionHelper = new PartitionHelper(_servicesCommunicationLogger);

            _logger.ActivatingController();
        }
 public PersonActorService(StatefulServiceContext context, ActorTypeInformation actorTypeInfo, Func <ActorService, ActorId, ActorBase> actorFactory = null, Func <ActorBase, IActorStateProvider, IActorStateManager> stateManagerFactory = null, IActorStateProvider stateProvider = null, ActorServiceSettings settings = null) : base(context, actorTypeInfo, actorFactory, stateManagerFactory, stateProvider, settings)
 {
     _logger = new PersonActorServiceLogger(this, Guid.NewGuid(), "");
     _communicationLogger = new ServicesCommunicationLogger(this.Context);
 }