java.lang.Object
jdk.dynalink.linker.support.SimpleLinkRequest
- All Implemented Interfaces:
- LinkRequest
public class SimpleLinkRequest extends Object implements LinkRequest
Default simple implementation of 
LinkRequest.- 
Constructor SummaryConstructors Constructor Description SimpleLinkRequest(CallSiteDescriptor callSiteDescriptor, boolean callSiteUnstable, Object... arguments)Creates a new link request.
- 
Method SummaryMethods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods declared in interface jdk.dynalink.linker.LinkRequestgetArguments, getCallSiteDescriptor, getReceiver, isCallSiteUnstable, replaceArguments
- 
Constructor Details- 
SimpleLinkRequestpublic SimpleLinkRequest(CallSiteDescriptor callSiteDescriptor, boolean callSiteUnstable, Object... arguments)Creates a new link request.- Parameters:
- callSiteDescriptor- the descriptor for the call site being linked. Must not be null.
- callSiteUnstable- true if the call site being linked is considered unstable.
- arguments- the arguments for the invocation. Must not be null.
- Throws:
- NullPointerException- if either- callSiteDescriptoror- argumentsis null.
 
 
-