A-Z Popular Blog Coding Search »
Coding
 Advertisements
Related Guides

7 Examples of Synchronous Communications and Processes

 , updated on
Synchronous is a term that describes processes that work together in time. The following are common types of synchronous process.

Networking

Synchronous communication between devices such as a web browser that requests an image and waits for a response. This tends to be inefficient so it is more common for a web browser to use asynchronous communication whereby a request is made without waiting for a response.

Communication

Synchronous communication between people is typically known as a conversation whereby one person talks and another listens and replies. An example of asynchronous communication is an email whereby you send a message and then continue with your life without waiting for a reply.

Processing

A single threaded computer program that executes sequential instructions is a synchronous process. Asynchronous processes require multiple threads or network communication such that work can be done in parallel. Threads that work in parallel without coordination of any kind are asynchronous. Threads that coordinate work in a way that requires waiting for a result are synchronous.

Services

A line for a single bank machine is a synchronous service as the machine serves one person at a time in sequence. A banking website that serves thousands of users concurrently is an asynchronous service.

Business Processes

A synchronous step in a business process has dependencies such that it needs to wait for other steps to complete before starting or finishing. It is common for a business process to have both synchronous and asynchronous steps as some things can be done in parallel and others have to be synchronized.

Education

Synchronous learning is when a class of students learn the same things at the same time. Asynchronous learning allows each student to advance slower, faster or in different directions.

Orbit

A synchronous orbit is when an orbiting object in space completes a rotation in the same time as the body being orbited. A synchronous orbit that is both equatorial and circular results in the orbiting object hovering over the same spot at all times.
Overview: Synchronous
Type
Definition
A process coordinated in time.
Related Concepts

Software Design

This is the complete list of articles we have written about software design.
Bootstrapping
Bulkhead
Code Refactoring
Complexity Hiding
Design Abstraction
Design For Scale
Future-Proofing
Microservices
Overengineering
Push Technology
Service Architecture
Soft Computing
Software Architecture
Software Components
Systems Analysis
Systems Design
Worse Is Better
More ...
If you enjoyed this page, please consider bookmarking Simplicable.
 

Software Design

A list of software design terms.

Separation Of Concerns

A definition of separation of concerns.

Backward vs Forward Compatibility

The difference between backward and forward compatibility.

Push Technology

A definition of push technology with examples.

Systems Design

The common elements of a systems design.

Software Design vs Software Architecture

The difference between software design and software architecture explained.

Software Bloat

The common types of software bloat.

Future-Proofing

A definition of future-proofing with examples.

Systems Analysis

The common types of systems analysis.

Bit Rot

The basic types of bit rot.

Networking

A list of networking techniques and concepts.

Host

The definition of host with various examples.

Localhost

A complete overview of localhost with an example.

Node

The definition of network node with examples.

API Gateway

The definition of API gateway with examples.

High Latency

The definition of high latency with examples.

Keep Alive

A complete overview of keep alive with examples and diagrams.

Network Architecture

A guide to network architecture.

Radio Waves

A list of the basic types of radio waves with useful charts.
The most popular articles on Simplicable in the past day.

New Articles

Recent posts or updates on Simplicable.
Site Map