public static IVersionedDocumentStore <TDocument> CreateJsonBlobStore <TDocument>(CloudBlobClient client,
                                                                                          string containerName, string directoryName)
        {
            IVersionedMetadataTextStore innerStore = VersionedTextStore.CreateBlobStore(client, containerName,
                                                                                        directoryName);

            return(new JsonVersionedDocumentStore <TDocument>(innerStore));
        }
 public JsonVersionedDocumentStore(IVersionedMetadataTextStore innerStore)
 {
     _innerStore = innerStore;
 }
Example #3
0
 private FunctionIndexVersionManager(IVersionedMetadataTextStore store)
 {
     _store = store;
 }
 private FunctionIndexVersionManager(IVersionedMetadataTextStore store)
 {
     _store = store;
 }