Interface VisitorState<T>

All Known Implementing Classes:
LocalVisitorState, SBThreadLocalVisitorState, ThreadLocalVisitorState

public interface VisitorState<T>
Simple thread local storage implementation for helping search condition visitors to access its state across multiple visit calls when a given visitor is not created on per-request basis.
  • Method Summary

    Modifier and Type
    Method
    Description
    get()
     
     
    void
    set(T value)
     
  • Method Details

    • get

      T get()
    • remove

      T remove()
    • set

      void set(T value)