Package com.oracle.truffle.api
Interface TruffleLanguage.ContextThreadLocalFactory<C,T>
- Enclosing class:
TruffleLanguage<C>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Context thread local factory for Truffle languages. Creates a new value per context and
thread.
- Since:
- 20.3
-
Method Summary
-
Method Details
-
create
Returns a new value for a context thread local for a language context and thread. The returned value must not benull
and must return a stable and exact type per TruffleLanguage subclass. A thread local must always return the sameclass
, even for multiple instances of the sameTruffleLanguage
. If this method throws anAbstractTruffleException
the exception interop messages may be executed without a context being entered.- Since:
- 20.3
- See Also:
-