コード例 #1
0
ファイル: PublishStorage.cs プロジェクト: githubassets/xeus
            public async ValueTask <IPublishStorage> CreateAsync(string configPath, PublishStorageOptions options, IObjectStoreFactory objectStoreFactory, IBytesPool bytesPool)
            {
                var result = new PublishStorage(configPath, options, objectStoreFactory, bytesPool);
                await result.InitAsync();

                return(result);
            }
コード例 #2
0
ファイル: PublishStorage.cs プロジェクト: githubassets/xeus
 internal PublishStorage(string configPath, PublishStorageOptions options, IObjectStoreFactory objectStoreFactory, IBytesPool bytesPool)
 {
     _configPath = configPath;
     _bytesPool  = bytesPool;
 }