com.genexus.webpanels.BlobsCleaner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxandroid Show documentation
Show all versions of gxandroid Show documentation
Core classes for the runtime used by Java and Android apps generated with GeneXus
package com.genexus.webpanels;
import java.util.Hashtable;
public class BlobsCleaner
{
private static BlobsCleaner instance = null;
//Blobs archived by websession id
private Hashtable blobsTable;
private BlobsCleaner()
{
}
public static BlobsCleaner getInstance()
{
if(instance == null)
{
instance = new BlobsCleaner();
}
return instance;
}
public static void endBlobCleaner()
{
}
public synchronized void addBlobFile(String filePath)
{
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy