Message
Everything on SkillVeris tagged Message — collected across the glossary, study notes, blog, and cheat sheets.
23 resources across 1 library
Study Notes(23)
Message Maps
How MFC's message-map macros build a static dispatch table that replaces a hand-written WndProc, plus how command routing and UI updates work on top of it.
MFC Common Pitfalls
The recurring mistakes MFC developers make with message maps, GDI resources, and the Document/View architecture, and how to avoid them.
Transport vs Message Security
A deep comparison of how WCF's transport-level and message-level security mechanisms actually protect data, and the trade-offs between them.
WCF Message Exchange Patterns
Explains the three message exchange patterns (MEPs) — One-Way, Request-Reply, and Duplex — that define how messages flow between a WCF client and service.
Message Extensions
Message extensions let users search external systems or trigger actions directly from the Teams compose box, message context menu, or link previews.
Methods and Message Passing
Explore how Objective-C methods work as messages sent to objects at runtime, including selectors, method signatures, and dynamic dispatch.
Concurrency in D
Explore D's message-passing actors in std.concurrency, shared-memory safety via shared/synchronized/immutable, and declarative data parallelism with std.parall…
Processes and Message Passing
Learn how Erlang's lightweight processes communicate exclusively through asynchronous message passing, forming the foundation of concurrent, fault-tolerant sys…
Processes in Elixir
Learn how Elixir's lightweight BEAM processes enable massive concurrency through isolation and message passing.
Validating WebSocket Messages
Techniques for safely parsing, validating, and routing untrusted WebSocket message payloads to prevent crashes and injection attacks.
Message Acknowledgments
Understand how RabbitMQ acknowledgments, nacks, and rejections protect against message loss and prevent poison-message loops.
Message Durability and Persistence
Learn how RabbitMQ keeps queues and messages alive across broker restarts using durable queues, persistent delivery mode, and the trade-offs involved in guaran…
Message TTL and Expiration
Learn how RabbitMQ expires messages using per-queue and per-message time-to-live settings, how expiration interacts with dead lettering, and the ordering subtl…
Producers and Consumers Basics
The fundamentals of writing RabbitMQ producers and consumers: publishing messages, subscribing to queues, acknowledgment, and prefetch.
What Is RabbitMQ?
An introduction to RabbitMQ as a message broker that decouples producers and consumers using exchanges, queues, and bindings.
Message Brokers in Microservices
Learn how message brokers like RabbitMQ and Kafka durably deliver messages between services, the difference between queues and topics, and delivery guarantees.
Kafka vs Other Message Queues
How Kafka's log-based, partitioned architecture compares to traditional brokers like RabbitMQ, cloud queues like AWS SQS, and newer systems like Apache Pulsar.
Message Keys and Partitioning
How Kafka uses a record's key to choose a partition, why that determines per-key ordering, and the risks of custom partitioners and changing partition counts.
Bidirectional Streaming RPC
A gRPC pattern where client and server each send an independent, ordered stream of messages over the same connection at the same time.
Pipes and Message Queues
Distinguishing anonymous pipes, named pipes (FIFOs), and message queues as message-passing IPC mechanisms.
Amending and Rewriting Commits
Amending lets you fix the most recent commit's message or contents without creating a new commit, while broader history rewriting tools reshape older commits b…
Commit Message Conventions
Why disciplined, structured commit messages make history searchable and automatable, and how conventions like Conventional Commits standardize their format.
Message Queues Explained
Message queues decouple producers from consumers by buffering work as discrete messages, enabling asynchronous processing, load leveling, and resilience to dow…