summaryrefslogtreecommitdiffstats
path: root/yolean/src/main/java/com/yahoo/yolean/concurrent/ResourceFactory.java
blob: 68b505c1b031f49e0c54eeef33291595a7ed49d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yolean.concurrent;

/**
 * @author baldersheim
 * @since 5.2
 */
public abstract class ResourceFactory<T> {

    public abstract T create();
}