All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nutz.boot.starter.fastdfs.FastDfsClientPool Maven / Gradle / Ivy

package org.nutz.boot.starter.fastdfs;

import org.apache.commons.pool2.PooledObjectFactory;
import org.apache.commons.pool2.impl.AbandonedConfig;
import org.apache.commons.pool2.impl.GenericObjectPool;
import org.apache.commons.pool2.impl.GenericObjectPoolConfig;
import org.csource.fastdfs.TrackerServer;

public class FastDfsClientPool extends GenericObjectPool {

    public FastDfsClientPool(PooledObjectFactory factory) {
        super(factory);
    }

    public FastDfsClientPool(PooledObjectFactory factory, GenericObjectPoolConfig config) {
        super(factory, config);
    }

    public FastDfsClientPool(PooledObjectFactory factory, GenericObjectPoolConfig config, AbandonedConfig abandonedConfig) {
        super(factory, config, abandonedConfig);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy