aboutsummaryrefslogtreecommitdiffstats
path: root/yolean/src/main/java/com/yahoo/yolean/concurrent/ResourceFactory.java
blob: 3a99b189ed8f53f5156f095dc50db6e4b0517fc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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;

import java.util.function.Supplier;

/**
 * @author baldersheim
 */
// TODO: Deprecate
public abstract class ResourceFactory<T> {

    public abstract T create();

    public final Supplier<T> asSupplier() {
        return () -> create();
    }

}