📄️ ApplicationError
ApplicationError syntax on Bitloops Language - Application Erros occur when there is an error in the application layer where interaction with external parts is initiated
📄️ DomainError
DomainError syntax on Bitloops Language - Domain Erros occur when there is an error in the domain layer of your application and its important to have a predefined template to better manage these errors when they occur.
📄️ DomainEvent
DomainEvent syntax on Bitloops Language - Domain Events are events that occur within a specific domain.
📄️ DTO
DTO syntax on Bitloops Language - DTOs are data transfer objects, meaning their sole responsibility is to transfer objects from one service to another, and correct configuration of these DTOs reduces communication costs considerably.
📄️ Entity
Entity syntax on Bitloops Language - An entity is a representation of an object that has an identity. It is unique!
📄️ EventHandler
EventHandler syntax on Bitloops Language - Event Handlers dictate the action that follows a specific event.
📄️ Features
Features syntax on Bitloops Language - Features are broad groupings of application services that solve a particular use case or behavior.
📄️ IntegrationEvent
IntegrationEvent syntax on Bitloops Language - Integration events are used for integrating with other service boundaries. This is to distinguish between Events which occur within a bounded context.
📄️ PackagePort
PackagePort syntax on Bitloops Language - Package Port allows developers to quickly use external libraries by acting as an interface between the Bitloops application and that external library.
📄️ Props
Props syntax on Bitloops Language - Propos are used together with DTOs to transfer objects
📄️ ReadModel
ReadModel syntax on Bitloops Language - Read Model is simply a model that is built specifically for queries and reading the data. This improves performance and reduces communication costs.
📄️ RepoPort
RepoPort syntax on Bitloops Language - Repository Ports allows developers to declare an interface to connect different databases easily using a Repository Adapter.
📄️ Rule
Rule syntax on Bitloops Language - Rule ...
📄️ ServicePort
ServicePort syntax on Bitloops Language - Service Ports are the doors to your application and should therefore be configured correctly for security, speed and efficiency.
📄️ Setup
Setup syntax on Bitloops Language - Setup is required to provide the server with the required information for initialization. This could be with GraphQL, Packages, RestControllers or Use Case.
📄️ Step
Step syntax on Bitloops Language - Steps....
📄️ Struct
Struct syntax on Bitloops Language - Structs are used to store items in key/value pairs to then be accessed with the use of an index. Structs are similar to objects in Javascript.
📄️ ValueObject
ValueObject syntax on Bitloops Language - Value objects are objects that do not have an identidy. There are objects that represent a characteristic and do not identify an variable or object.