Skip to content

Instantly share code, notes, and snippets.

@TheShubhamVsnv
Created January 13, 2024 15:05
Show Gist options
  • Save TheShubhamVsnv/6a0d964e025e58ffe1288f0286816f53 to your computer and use it in GitHub Desktop.
Save TheShubhamVsnv/6a0d964e025e58ffe1288f0286816f53 to your computer and use it in GitHub Desktop.
// Apex Class with Recursive Depth Limit
public class RecursionHandler {
public static Integer recursionDepth = 0;
public static Integer maxDepth = 3; // Set your desired maximum depth
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment