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

com.github.datalking.beans.factory.config.Scope Maven / Gradle / Ivy

package com.github.datalking.beans.factory.config;

import com.github.datalking.beans.factory.ObjectFactory;

/**
 * @author yaoo on 4/29/18
 */
public interface Scope {

    Object get(String name, ObjectFactory objectFactory);

    Object remove(String name);

    void registerDestructionCallback(String name, Runnable callback);

    Object resolveContextualObject(String key);

    String getConversationId();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy