Splunk AppDynamics SaaS Application Monitoring Configure Instrumentation Transaction Detection Rules Custom Match Rules Java Business Transaction Detection POJO Entry Points Current: Instrument Java Lambda Expressions PDF Download PDF Download page Instrument Java Lambda Expressions. Current page All pages Instrument Java Lambda Expressions This page describes Lambda expressions, a Java language feature introduced in Java 8 that enables a functional style of programming in Java.Java LambdaHere's a short example: LambdaMethodInterface i = (acc, x) -> acc + x; CODE In the JVM, this creates an anonymous instance of the associated FunctionalInterface, as shown below: package jdk8; @java.lang.FunctionalInterface interface LambdaMethodInterface { int sum(int acc, int x); } CODE Instrument Java Lambda InstancesTo instrument lambda instances, create a POJO business transaction match rule for the LambdaMethodInterface, for example:This sample rule matches classes that implement the interface name jdk8.LambdaMethodInterface. ×