All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.newrelic.agent.util.asm.VariableLoader Maven / Gradle / Ivy

There is a newer version: 8.14.0
Show newest version
/*
 *
 *  * Copyright 2020 New Relic Corporation. All rights reserved.
 *  * SPDX-License-Identifier: Apache-2.0
 *
 */

package com.newrelic.agent.util.asm;

import org.objectweb.asm.commons.GeneratorAdapter;

/**
 * Helps the {@link BytecodeGenProxyBuilder} load argument types for which it has no built in support.
 * 
 * @see BytecodeGenProxyBuilder#addLoader(org.objectweb.asm.Type, VariableLoader)
 */
public interface VariableLoader {

    void load(Object value, GeneratorAdapter methodVisitor);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy