blob: a256b971cbe00255167727ccbd864e848899300c [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.jackrabbit.oak.spi.blob.stats;
import java.util.concurrent.TimeUnit;
import org.osgi.annotation.versioning.ConsumerType;
/**
* BlobStoreStatsCollector receives callback when blobs are written and read
* from BlobStore
*/
@ConsumerType
public interface BlobStatsCollector {
BlobStatsCollector NOOP = new BlobStatsCollector() {
@Override
public void uploaded(long timeTaken, TimeUnit unit, long size) {
}
@Override
public void downloaded(String blobId, long timeTaken, TimeUnit unit, long size) {
}
@Override
public void uploadCompleted(String blobId) {
}
@Override
public void downloadCompleted(String blobId) {
}
};
/**
* Called when a binary content is written to BlobStore
*
* @param timeTaken time taken to perform the operation
* @param unit unit of time taken
* @param size size of binary content being written
*/
void uploaded(long timeTaken, TimeUnit unit, long size);
/**
* Called when a binary content is read from BlobStore
*
* @param blobId id of blob whose content are being read. For BlobStore
* which break up file in chunks it would be chunkId
* @param timeTaken time taken to perform the operation
* @param unit unit of time taken
* @param size size of binary content being read
*/
void downloaded(String blobId, long timeTaken, TimeUnit unit, long size);
/**
* Invoked when upload for a binary file get completed. In case of chunked
* BlobStore this invoked when all the chunks have been uploaded
*
* @param blobId id of the blob which got uploaded. Even in case of chunked
* blobStores its the id of main blob
*/
void uploadCompleted(String blobId);
/**
* Invoked when download for a binary file get completed. In case of chunked
* BlobStore this invoked when all the chunks have been downloaded
*
* @param blobId id of the blob which got downloaded. Even in case of chunked
* blobStores its the id of main blob
*/
void downloadCompleted(String blobId);
}