Akan business service is the server-side execution layer for business behavior. When a customer places an order, a manager adds stock, a reservation status changes, or a nightly report is generated, the business service decides what runs now, what changes stored data, what should run in the background, and which clients need to be notified.
Request actions: The user clicks a button and expects a clear result, such as submit order, add stock, or approve request.
Business services: Rules and orchestration live here: stock rules, payment status, reservation conflicts, and external APIs.
Background work: Slow, repeated, scheduled, or non-blocking tasks can run after the screen receives a quick response.
Realtime updates: When dashboards, devices, or other users should see a change, the business service publishes the updated result.