LIVE PORTAL β€’ Telegram v11.8 API Synchronized β€’ Free Animated Stickers
shield_person ADMIN LOGGED IN + Write Guide
admin_panel_settings ADMIN CONTROLS Guide #223 β€’ Tips & Video Shorts
Telegram Delivery & Read Receipt Architecture: Single vs Double Checkmark Semantics & MTProto Read History
done_all Read Receipts & Cloud State Synchronization

Telegram Delivery & Read Receipt Architecture: Single vs Double Checkmark Semantics & MTProto Read History

Few UI elements generate as much curiosity and misunderstanding as chat checkmarks. Unlike SMS or legacy client-to-client networks, Telegram's checkmark semantics reflect its distributed cloud architecture. On Telegram, one checkmark (βœ“) signifies that your message has been delivered to Telegram's cloud cluster and synced across all recipient sessionsβ€”even if their physical smartphone is currently powered off. Two checkmarks (βœ“βœ“) confirm that the recipient has opened the conversation and viewed the bubble. In groups, a message is marked as read as soon as at least one member views it.

verified Official Telegram Technical Showcase: One check = delivered to cloud. Two checks = read. In groups, marked read as soon as one member views it.
cloud_done

1. Single Checkmark: Ingested & Cloud Distributed

In legacy SMS or peer-to-peer protocols, a delivery receipt implies a hand-off to the recipient's specific physical hardware. Telegram operates on a distributed cloud topology. When a sender presses send, the client dispatches messages.sendMessage:

Single Checkmark (βœ“) Guarantee:

Message Ingested by Datacenter -> Replicated across Cloud Storage Clusters -> Synced to Recipient Outbox Stream -> Push Notifications Dispatched via APNs / FCM.

The message is delivered whether the friend's phone is switched on, in flight mode, or out of cell coverage. As soon as any of their devices connects, the message downloads instantly.

done_all

2. Double Checkmark: Viewport Hit Testing & Read State

A message changes from one checkmark to two checkmarks (βœ“βœ“) exclusively when the recipient opens the conversation:

visibility Viewport Intersection Requirement

Merely receiving a lock-screen push notification does not trigger a read receipt. The recipient must launch Telegram and render the message in the visible viewport.

mark_chat_read High-Water Mark Sequencing

When a user scrolls to message #500, all preceding messages (#1 to #500) automatically transition to read state in a single atomic pointer increment.

sync Sub-Second Peer Feedback

The sender client receives an updateReadHistoryOutbox socket event, updating the checkmark icon smoothly in real time without refreshing.

groups

3. Group Chat Read Semantics & Scalability

In large groups (which can hold up to 200,000 members on Telegram), tracking every individual read event per checkmark would cause catastrophic database lock contention:

The Any-Member Threshold:

In group chats, the message icon transitions to double checks (βœ“βœ“) as soon as at least one member views the message. In smaller groups, tapping or right-clicking the bubble opens a granular viewer list displaying exactly which members have read the message and at what time.

schema

4. MTProto messages.readHistory Protocol

Under the MTProto transport protocol, acknowledging message reads utilizes a streamlined RPC method:

MTProto Layer Schema Definition:

messages.readHistory#0e306d3a peer:InputPeer max_id:int = messages.AffectedMessages;

Rather than transmitting hundreds of message IDs, the client simply provides the max_id. The server updates the outbox pointer in constant time O(1) and broadcasts socket updates to sender sessions.

speed

5. Interactive Delivery & Read Receipt Studio

Experience Telegram's checkmark lifecycle. Switch between 1-on-1 and Group Chat modes. Dispatch messages and simulate recipient open events to watch checkmarks transition in real time!

done_all Delivery & Read Receipt Simulator
Chat with Sarah (1-on-1) MTProto v2.0 Layer
Meeting is confirmed for 2:00 PM in Conference Room A. See you there!
13:58 done
[STATUS] Message delivered to cloud. Checkmark icon: Single Check (βœ“).
account_tree One-Page Executive Infographic

Telegram Delivery & Read Architecture at a Glance

A comprehensive visual flowchart summarizing cloud delivery guarantees, viewport read triggers, and group chat any-member thresholds.

Telegram Delivery & Read Receipt Architecture Infographic Flowchart
πŸ’‘ Tip: Click the image to view the ultra-sharp full-resolution infographic poster in full lightbox viewer.
admin_panel_settings ADMIN Guide #223 Actions
Enlarged Preview
Click anywhere outside or press ESC to close viewer
smart_display Telegram Video Short
1080p HD
Official Source: @TelegramTips Post #44 Press ESC or click outside to close