Delegate
  • Delegate Framework
    • Framework Overview
    • Feature Overview
  • Commands
    • First Command
    • Command Attributes
      • Arguments
      • Actions
      • Properties & Definitions
  • Tutorials / Examples
    • Getting Started
    • 👋Hello, World!
Powered by GitBook
On this page
  1. Delegate Framework

Framework Overview

This page describes the building blocks of Delegate

PreviousDelegate FrameworkNextFeature Overview

Last updated 1 year ago

The Delegate framework is implemented as follows:

  • Delegate API defines the implementation you should follow when implementing custom attributes, rules, etc. This is only necessary to understand when you want to dive deep into how Delegate works and how it can be extended.

  • Delegate Core is the implementation of the Delegate API. It contains platform-agnostic command (pre-)processing and handling. All built-in functionality also resides here.

  • Finally there are platform-dependent implementation which allow for other built-in functionalities to exists for specific platforms. If you are using Delegate, make sure to choose the package that implements the platform you are developing for.

Make sure to pick the proper platform implementation before starting to work with Delegate to avoid runtime surprises!

Delegate Framework Structure