Class GCPStorageClient

java.lang.Object
io.antmedia.storage.StorageClient
io.antmedia.storage.GCPStorageClient

public class GCPStorageClient extends StorageClient
  • Field Details

    • logger

      protected static org.slf4j.Logger logger
    • storage

      private com.google.cloud.storage.Storage storage
  • Constructor Details

    • GCPStorageClient

      public GCPStorageClient()
  • Method Details

    • getGCPStorage

      public com.google.cloud.storage.Storage getGCPStorage()
    • delete

      public void delete(String key)
      Description copied from class: StorageClient
      Delete file from storage
      Specified by:
      delete in class StorageClient
    • fileExist

      public boolean fileExist(String key)
      Description copied from class: StorageClient
      Check if the key exists in the bucket
      Specified by:
      fileExist in class StorageClient
      Returns:
    • save

      public void save(String key, InputStream inputStream, boolean waitForCompletion)
      Description copied from class: StorageClient
      Save input stream to the storage with key parameter
      Specified by:
      save in class StorageClient
    • save

      public void save(String key, File file, boolean deleteLocalFile)
      Description copied from class: StorageClient
      Save file to storage and delete the local file according to the parameter
      Specified by:
      save in class StorageClient
    • deleteFile

      public void deleteFile(File file)
    • reset

      public void reset()
      Description copied from class: StorageClient
      Re-initialize the storage client with the current parameters
      Specified by:
      reset in class StorageClient