Book Image

Mastering Apex Programming

By : Paul Battisson
5 (1)
Book Image

Mastering Apex Programming

5 (1)
By: Paul Battisson

Overview of this book

As applications built on the Salesforce platform are now a key part of many organizations, developers are shifting focus to Apex, Salesforce’s proprietary programming language. As a Salesforce developer, it is important to understand the range of tools at your disposal, how and when to use them, and best practices for working with Apex. Mastering Apex Programming will help you explore the advanced features of Apex programming and guide you in delivering robust solutions that scale. This book starts by taking you through common Apex mistakes, debugging, exception handling, and testing. You'll then discover different asynchronous Apex programming options and develop custom Apex REST web services. The book shows you how to define and utilize Batch Apex, Queueable Apex, and Scheduled Apex using common scenarios before teaching you how to define, publish, and consume platform events and RESTful endpoints with Apex. Finally, you'll learn how to profile and improve the performance of your Apex application, including architecture trade-offs. With code examples used to facilitate discussion throughout, by the end of the book, you'll have developed the skills needed to build robust and scalable applications in Apex.
Table of Contents (21 chapters)
1
Section 1 – Triggers, Testing, and Security
8
Section 2 – Asynchronous Apex and Apex REST
15
Section 3 – Apex Performance

Using the finally block

The finally block in Apex executes after your catch block has executed, when an exception occurs. It will not execute if either the exception is unhandled or no exception occurs. The primary use case of the finally block is to ensure that any changes we do not want to persist are rolled back or that the code can continue past the error. It can also be used to end the transaction should a piece of code fail and you wish to end the process.

In the following example code, we are creating a Savepoint before inserting a new account and then attempting to insert a new related contact:

Savepoint entryState = new Database.setSavepoint();
try {
	insert acc; //insert our populated account variable
} catch(DMLException accEx) {
	//handle the DML Exception
} finally {
	return; //Stop execution
}
con.AccountId = acc.Id;
try {
	insert con;
} catch(DMLException conEx) {
	//Handle the DML Exception
} finally {
	Database.rollback(entryState);
}

If the contact insertion...