Skip to content

Commit

Permalink
refactor: execution methods into Executor class
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Jun 16, 2021
1 parent e8228c5 commit 2f158fb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/execution/execute.ts
Expand Up @@ -302,6 +302,14 @@ export function buildExecutionContext(
}

/**
* This class is exported only to assist people in implementing their own executors
* without duplicating too much code and should be used only as last resort for cases
* requiring custom execution or if certain features could not be contributed upstream.
*
* It is still part of the internal API and is versioned, so any changes to it are never
* considered breaking changes. If you still need to support multiple versions of the
* library, please use the `versionInfo` variable for version detection.
*
* @internal
*/
export class Executor {
Expand Down

0 comments on commit 2f158fb

Please sign in to comment.