Пример #1
0
 public RegisterRepoHandler(
     ITracer tracer,
     IRepoRegistry registry,
     NamedPipeServer.Connection connection,
     NamedPipeMessages.RegisterRepoRequest request)
 {
     this.tracer     = tracer;
     this.registry   = registry;
     this.connection = connection;
     this.request    = request;
 }
Пример #2
0
        public GVFSService(
            ITracer tracer,
            string serviceName,
            IRepoRegistry repoRegistry)
        {
            this.tracer       = tracer;
            this.repoRegistry = repoRegistry;
            this.serviceName  = serviceName;

            this.serviceStopped = new ManualResetEvent(false);
            this.serviceThread  = new Thread(this.ServiceThreadMain);
            this.requestHandler = new RequestHandler(this.tracer, EtwArea, this.repoRegistry);
        }
Пример #3
0
 public RequestHandler(ITracer tracer, string etwArea, IRepoRegistry repoRegistry)
 {
     this.tracer       = tracer;
     this.etwArea      = etwArea;
     this.repoRegistry = repoRegistry;
 }