Understanding Fork Join
Jump to navigation
Jump to search
Overview
This page will walk you through reading documentation and understanding what the functions do in a practical manner.
Fork
When we look at the docs, we are greeted with the following:
static
means that the function is related to the class, FJ
as opposed to a specific instance of that class. This means that we can call FJ.fork
directly, we don't need to create an instance of that class to do so. In our code, we typically just write fork
because Professor Cosgrove has imported the appropriate dependencies for you!