aboutsummaryrefslogtreecommitdiffstats
path: root/processing/src/main/java/com/yahoo/processing/execution/chain/ChainRegistry.java
blob: b07243c31b52eeca1bd60405ad21180960e48be1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.processing.execution.chain;

import com.yahoo.component.chain.Chain;
import com.yahoo.component.chain.ChainedComponent;
import com.yahoo.component.provider.ComponentRegistry;

/**
 * A registry of chains
 *
 * @author tonytv
 * @since 5.1.7
 */
public class ChainRegistry<T extends ChainedComponent> extends ComponentRegistry<Chain<T>> {
}