Skip to content

Latest commit

 

History

History
7 lines (5 loc) · 390 Bytes

README.md

File metadata and controls

7 lines (5 loc) · 390 Bytes

Java Dynamic Proxy using InvokeDynamic

An alternative to java.lang.reflect.Proxy that uses InvokeDynamic to implement methods. This has the benefit of only executing the lookup logic once for each method, not for each invocation.