java.lang.Object
java.lang.invoke.CallSite
java.lang.invoke.MutableCallSite
jdk.dynalink.support.AbstractRelinkableCallSite
jdk.dynalink.support.SimpleRelinkableCallSite
- All Implemented Interfaces:
- RelinkableCallSite
public class SimpleRelinkableCallSite extends AbstractRelinkableCallSite
A relinkable call site that implements monomorphic inline caching strategy,
 only being linked to a single 
GuardedInvocation at any given time.
 If the guard of that single invocation fails, or it has an invalidated
 switch point, or its invalidating exception triggered, then the call site
 will throw it away and ask its associated DynamicLinker to relink it.- 
Constructor SummaryConstructors Constructor Description SimpleRelinkableCallSite(CallSiteDescriptor descriptor)Creates a new call site with monomorphic inline caching strategy.
- 
Method SummaryMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface jdk.dynalink.RelinkableCallSitegetDescriptor, initialize, relink, resetAndRelink
- 
Constructor Details- 
SimpleRelinkableCallSiteCreates a new call site with monomorphic inline caching strategy.- Parameters:
- descriptor- the descriptor for this call site
 
 
-