aboutsummaryrefslogtreecommitdiffstats
path: root/yolean/src/main/java/com/yahoo/yolean/concurrent/ResourceFactory.java
blob: f926283a47fb7587f9d0f2b746530eda0779cfbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2017 Yahoo Holdings. 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();
}