Skip to content

pipeline

mtanksl edited this page Jan 17, 2025 · 3 revisions

Introduction

A lot happens when an Incoming Packet (green) arrives at the server.

Commands may call other Commands (yellow) using Context.Current.AddCommand method.

Commands may send Outgoing Packets (red) using Context.Current.AddPacket method.

Commands may generate Events (blue) using Context.Current.AddEvent method.

Commands can be intercepted and changed (purple) before executing.

Events can be intercepted (orange) after execution.

Login example

Logout example