- java.lang.Object
-
- java.lang.invoke.CallSite
-
- java.lang.invoke.VolatileCallSite
-
public class VolatileCallSite extends CallSite
AVolatileCallSite
is aCallSite
whose target acts like a volatile variable. Aninvokedynamic
instruction linked to aVolatileCallSite
sees updates to its call site target immediately, even if the update occurs in another thread. There may be a performance penalty for such tight coupling between threads.Unlike
MutableCallSite
, there is no syncAll operation on volatile call sites, since every write to a volatile variable is implicitly synchronized with reader threads.In other respects, a
VolatileCallSite
is interchangeable withMutableCallSite
.- See Also:
MutableCallSite
-
-
Constructor Summary
Constructors Constructor and Description VolatileCallSite(MethodHandle target)
Creates a call site with a volatile binding to its target.VolatileCallSite(MethodType type)
Creates a call site with a volatile binding to its target.
-
Method Summary
Methods Modifier and Type Method and Description MethodHandle
dynamicInvoker()
Produces a method handle equivalent to an invokedynamic instruction which has been linked to this call site.MethodHandle
getTarget()
Returns the target method of the call site, which behaves like avolatile
field of theVolatileCallSite
.void
setTarget(MethodHandle newTarget)
Updates the target method of this call site, as a volatile variable.-
Methods inherited from class java.lang.invoke.CallSite
type
-
-
-
-
Constructor Detail
-
VolatileCallSite
public VolatileCallSite(MethodType type)
Creates a call site with a volatile binding to its target. The initial target is set to a method handle of the given type which will throw anIllegalStateException
if called.- Parameters:
type
- the method type that this call site will have- Throws:
NullPointerException
- if the proposed type is null
-
VolatileCallSite
public VolatileCallSite(MethodHandle target)
Creates a call site with a volatile binding to its target. The target is set to the given value.- Parameters:
target
- the method handle that will be the initial target of the call site- Throws:
NullPointerException
- if the proposed target is null
-
-
Method Detail
-
getTarget
public final MethodHandle getTarget()
Returns the target method of the call site, which behaves like avolatile
field of theVolatileCallSite
.The interactions of
getTarget
with memory are the same as of a read from avolatile
field.In particular, the current thread is required to issue a fresh read of the target from memory, and must not fail to see a recent update to the target by another thread.
- Specified by:
getTarget
in classCallSite
- Returns:
- the linkage state of this call site, a method handle which can change over time
- See Also:
setTarget(java.lang.invoke.MethodHandle)
-
setTarget
public void setTarget(MethodHandle newTarget)
Updates the target method of this call site, as a volatile variable. The type of the new target must agree with the type of the old target.The interactions with memory are the same as of a write to a volatile field. In particular, any threads is guaranteed to see the updated target the next time it calls
getTarget
.- Specified by:
setTarget
in classCallSite
- Parameters:
newTarget
- the new target- Throws:
NullPointerException
- if the proposed new target is nullWrongMethodTypeException
- if the proposed new target has a method type that differs from the previous target- See Also:
getTarget()
-
dynamicInvoker
public final MethodHandle dynamicInvoker()
Produces a method handle equivalent to an invokedynamic instruction which has been linked to this call site.This method is equivalent to the following code:
MethodHandle getTarget, invoker, result; getTarget = MethodHandles.publicLookup().bind(this, "getTarget", MethodType.methodType(MethodHandle.class)); invoker = MethodHandles.exactInvoker(this.type()); result = MethodHandles.foldArguments(invoker, getTarget)
- Specified by:
dynamicInvoker
in classCallSite
- Returns:
- a method handle which always invokes this call site's current target
-
-
Nederlandse vertaling
U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.
Bij voorbaat dank.
Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-java/lang/invoke/VolatileCallSite.html
De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.
Referenties
Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.