• 1Installation
  • 2Preliminary Knowledge
  • 3Create Triggers
  • 4Trigger Handler
  • 5Bulk Object
  • 6Find Specific Objects
  • 7Data Sharing
  • 8Catch All Events
  • 9Trigger Controller
  • 10Normal Trigger Event Handler
  • 11Trigger Context
  • 12Unit Test
  • 13Take Only Trigger Execution

Trap.apex

  • Docs
  • Tutorials
Getting started with Trap.apex

Installation

Trap.apex has a dependency on R.apex and Stream.apex.

First, we will include R.apex.

Include Func.cls, R.cls, and RTest.cls(optional) into your Org, and R.apex is ready.

Then, we will include Stream.apex.

Include Stream.cls, and StreamTest.cls(optional) into your Org, and Stream.apex is ready.

Then, we will include Trap.apex.

Include Trap.cls, TrapTest.cls(optional) and other optional files into your Org, and you are ready to go.

Done