aboutsummaryrefslogtreecommitdiffstats
path: root/container-core/src/main/java/com/yahoo/processing/execution/chain/ChainRegistry.java
blob: e74a93d08dc76a8ed16f86a9a6fd866029b3a659 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. 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 Tony Vaagenes
 */
public class ChainRegistry<T extends ChainedComponent> extends ComponentRegistry<Chain<T>> {
}