summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Li <alex.li@mongodb.com>2022-07-28 16:13:13 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-07-28 17:21:38 +0000
commit11967978f80d227ff72975807209180658912c6d (patch)
tree6d06c98f1a32ca294435cabf19439e03d562967c /docs
parente4e786a4300a6bd2c0719d5a7b9f4a90a178aeb2 (diff)
downloadmongo-11967978f80d227ff72975807209180658912c6d.tar.gz
SERVER-67830 Rename ServiceStateMachine -> SessionWorkflow
Diffstat (limited to 'docs')
-rw-r--r--docs/command_dispatch.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/command_dispatch.md b/docs/command_dispatch.md
index 844fb0ffb8a..eb8ff324f6b 100644
--- a/docs/command_dispatch.md
+++ b/docs/command_dispatch.md
@@ -8,8 +8,8 @@ taken from the network, parsed, sanitized, then finally run on databases.
[Service entry points][service_entry_point_h] fulfill the transition from the
transport layer into command implementations. For each incoming connection
from a client (in the form of a [session][session_h] object), a new dedicated
-thread is spawned then detached, and is also assigned a new [service state
-machine][service_state_machine_h], responsible for maintaining the state of a
+thread is spawned then detached, and is also assigned a new [session workflow]
+[session_workflow_h], responsible for maintaining the workflow of a
single client connection during its lifetime. Central to the entry point is the
`handleRequest()` function, which manages the server-side logic of processing
requests and returns a response message indicating the result of the
@@ -72,7 +72,7 @@ For details on transport internals, including ingress networking, see [this docu
[service_entry_point_h]: ../src/mongo/transport/service_entry_point.h
[session_h]: ../src/mongo/transport/session.h
-[service_state_machine_h]: ../src/mongo/transport/service_state_machine.h
+[session_workflow_h]: ../src/mongo/transport/session_workflow.h
[service_entry_point_mongos_h]: ../src/mongo/s/service_entry_point_mongos.h
[service_entry_point_mongod_h]: ../src/mongo/db/service_entry_point_mongod.h
[read_concern]: https://docs.mongodb.com/manual/reference/read-concern/