Example #1
0
 public ReadRequestProcessor(IFolderPacker folderPackager, IClock clock, string folderPath, string password)
     : base(password)
 {
     _folderPackager = folderPackager;
     _clock          = clock;
     _folderPath     = folderPath;
 }
Example #2
0
        public RequestListener(INetworkConnection serverConnection, IFolderPacker folderPackager, IClock clock, string folderPath, string password)
        {
            _serverConnection = serverConnection;

            _readRequestProcessor = new ReadRequestProcessor(folderPackager, clock, folderPath, password);
        }