Uses of Interface
org.jboss.modules.ref.Reference

Packages that use Reference
Package
Description
Classes which implement reference types which can be cleaned up automatically by a background thread.
  • Uses of Reference in org.jboss.modules.ref

    Classes in org.jboss.modules.ref that implement Reference
    Modifier and Type
    Class
    Description
    class 
    Deprecated.
    Use Cleaner or one of the reference types from a support library such as io.smallrye.common:smallrye-common-ref instead.
    class 
    Deprecated.
    Use Cleaner or one of the reference types from a support library such as io.smallrye.common:smallrye-common-ref instead.
    class 
    Deprecated.
    Use Cleaner or one of the reference types from a support library such as io.smallrye.common:smallrye-common-ref instead.
    class 
    Deprecated.
    Use Cleaner or one of the reference types from a support library such as io.smallrye.common:smallrye-common-ref instead.
    Methods in org.jboss.modules.ref that return Reference
    Modifier and Type
    Method
    Description
    static <T,A> Reference<T,A>
    References.create(Reference.Type type, T value, A attachment)
    Deprecated.
    Create a reference of a given type with the provided value and attachment.
    static <T,A> Reference<T,A>
    References.create(Reference.Type type, T value, A attachment, ReferenceQueue<? super T> referenceQueue)
    Deprecated.
    Create a reference of a given type with the provided value and attachment.
    static <T,A> Reference<T,A>
    References.create(Reference.Type type, T value, A attachment, Reaper<T,A> reaper)
    Deprecated.
    Create a reference of a given type with the provided value and attachment.
    static <T,A> Reference<T,A>
    References.getNullReference()
    Deprecated.
    Get a null reference.
    Methods in org.jboss.modules.ref with parameters of type Reference
    Modifier and Type
    Method
    Description
    void
    Reaper.reap(Reference<T,A> reference)
    Deprecated.
    Perform the cleanup action for a reference.