Liking cljdoc? Tell your friends :D

jdk.lang.invoke.CallSite

A CallSite is a holder for a variable MethodHandle, which is called its target. An invokedynamic instruction linked to a CallSite delegates all calls to the site's current target. A CallSite may be associated with several invokedynamic instructions, or it may be "free floating", associated with none. In any case, it may be invoked through an associated method handle called its dynamic invoker.

CallSite is an abstract class which does not allow direct subclassing by users. It has three immediate, concrete subclasses that may be either instantiated or subclassed.

If a mutable target is not required, an invokedynamic instruction may be permanently bound by means of a java.lang.invoke.constant call site. If a mutable target is required which has volatile variable semantics, because updates to the target must be immediately and reliably witnessed by other threads, a java.lang.invoke.volatile call site may be used. Otherwise, if a mutable target is required, a java.lang.invoke.mutable call site may be used.

A non-constant call site may be relinked by changing its target. The new target must have the same type as the previous target. Thus, though a call site can be relinked to a series of successive targets, it cannot change its type.

Here is a sample use of call sites and bootstrap methods which links every dynamic call site to print its arguments:

static void test() throws Throwable { // THE FOLLOWING LINE IS PSEUDOCODE FOR A JVM INSTRUCTION InvokeDynamic[#bootstrapDynamic].baz("baz arg", 2, 3.14); } private static void printArgs(Object... args) { System.out.println(java.util.Arrays.deepToString(args)); } private static final MethodHandle printArgs; static { MethodHandles.Lookup lookup = MethodHandles.lookup(); Class thisClass = lookup.lookupClass(); // (who am I?) printArgs = lookup.findStatic(thisClass, "printArgs", MethodType.methodType(void.class, Object[].class)); } private static CallSite bootstrapDynamic(MethodHandles.Lookup caller, String name, MethodType type) { // ignore caller and name, but match the type: return new ConstantCallSite(printArgs.asType(type)); }

A CallSite is a holder for a variable MethodHandle,
 which is called its target.
 An invokedynamic instruction linked to a CallSite delegates
 all calls to the site's current target.
 A CallSite may be associated with several invokedynamic
 instructions, or it may be "free floating", associated with none.
 In any case, it may be invoked through an associated method handle
 called its dynamic invoker.

 CallSite is an abstract class which does not allow
 direct subclassing by users.  It has three immediate,
 concrete subclasses that may be either instantiated or subclassed.

 If a mutable target is not required, an invokedynamic instruction
 may be permanently bound by means of a java.lang.invoke.constant call site.
 If a mutable target is required which has volatile variable semantics,
 because updates to the target must be immediately and reliably witnessed by other threads,
 a java.lang.invoke.volatile call site may be used.
 Otherwise, if a mutable target is required,
 a java.lang.invoke.mutable call site may be used.


 A non-constant call site may be relinked by changing its target.
 The new target must have the same type
 as the previous target.
 Thus, though a call site can be relinked to a series of
 successive targets, it cannot change its type.

 Here is a sample use of call sites and bootstrap methods which links every
 dynamic call site to print its arguments:


static void test() throws Throwable {
    // THE FOLLOWING LINE IS PSEUDOCODE FOR A JVM INSTRUCTION
    InvokeDynamic[#bootstrapDynamic].baz("baz arg", 2, 3.14);
}
private static void printArgs(Object... args) {
  System.out.println(java.util.Arrays.deepToString(args));
}
private static final MethodHandle printArgs;
static {
  MethodHandles.Lookup lookup = MethodHandles.lookup();
  Class thisClass = lookup.lookupClass();  // (who am I?)
  printArgs = lookup.findStatic(thisClass,
      "printArgs", MethodType.methodType(void.class, Object[].class));
}
private static CallSite bootstrapDynamic(MethodHandles.Lookup caller, String name, MethodType type) {
  // ignore caller and name, but match the type:
  return new ConstantCallSite(printArgs.asType(type));
}
raw docstring

dynamic-invokerclj

(dynamic-invoker this)

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)

returns: a method handle which always invokes this call site's current target - java.lang.invoke.MethodHandle

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)

returns: a method handle which always invokes this call site's current target - `java.lang.invoke.MethodHandle`
raw docstring

get-targetclj

(get-target this)

Returns the target method of the call site, according to the behavior defined by this call site's specific class. The immediate subclasses of CallSite document the class-specific behaviors of this method.

returns: the current linkage state of the call site, its target method handle - java.lang.invoke.MethodHandle

Returns the target method of the call site, according to the
 behavior defined by this call site's specific class.
 The immediate subclasses of CallSite document the
 class-specific behaviors of this method.

returns: the current linkage state of the call site, its target method handle - `java.lang.invoke.MethodHandle`
raw docstring

set-targetclj

(set-target this new-target)

Updates the target method of this call site, according to the behavior defined by this call site's specific class. The immediate subclasses of CallSite document the class-specific behaviors of this method.

The type of the new target must be equal to the type of the old target.

new-target - the new target - java.lang.invoke.MethodHandle

throws: java.lang.NullPointerException - if the proposed new target is null

Updates the target method of this call site, according to the
 behavior defined by this call site's specific class.
 The immediate subclasses of CallSite document the
 class-specific behaviors of this method.

 The type of the new target must be equal to
 the type of the old target.

new-target - the new target - `java.lang.invoke.MethodHandle`

throws: java.lang.NullPointerException - if the proposed new target is null
raw docstring

typeclj

(type this)

Returns the type of this call site's target. Although targets may change, any call site's type is permanent, and can never change to an unequal type. The setTarget method enforces this invariant by refusing any new target that does not have the previous target's type.

returns: the type of the current target, which is also the type of any future target - java.lang.invoke.MethodType

Returns the type of this call site's target.
 Although targets may change, any call site's type is permanent, and can never change to an unequal type.
 The setTarget method enforces this invariant by refusing any new target that does
 not have the previous target's type.

returns: the type of the current target, which is also the type of any future target - `java.lang.invoke.MethodType`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close