There are 4 types of Storage services offered by Azure, 1. Blob Storage: Any data/file ( unstructured data ) 2. File Storage: Commonly shared files
Blog
A simple definition of Azure Storage Account
All of your Azure Storage data objects, such as blobs, file shares, queues, tables, and discs, are stored in an Azure storage account. Your Azure
Ownership in multithreading explained in a simple way
Another interesting case for transferring ownership from one thread to another, however, one thread cannot be assigned to another. Strange, right? Yes, thread ownership may
Advantages of thread join method in multithreading with an example
Advantages of thread join method in multithreading with an example. API Join() calling thread is suspended until the function called during construction completes. After all
thread_local a unique data for each thread
One of the primary advantages of utilising threads for concurrency is the ability to quickly and directly transfer data across them, so now that we’ve
mutex in the thread explained in simple examples in detail
A mutex is a locked object that acts as a notification when critical code parts demand exclusive access. It prohibits other threads with the same
Complete guide on how to Pass Arguments to thread and How You Could Use Them With C++
This blog describes how to pass an argument to a thread and which arguments cannot be passed. The first thing we’ll look at is why
Initialization In Modern C++
INITIALIZATION IN MODERN C++ Content Covered Default initialization Copy initialization Aggregate initialization Case 1: Zero initialized for aggregateCase 2: Brace elision Direct initialization Case 1:
Aggregate Initialization in C++
An aggregate initialization is a collection of items gathered together. Aggregates of mixed types, such as structs and classes, are covered by this definition. An
Parse and TryParse in C#
The converted number is returned by the Parse function, whereas the TryParse method delivers a boolean value indicating if the conversion succeeded and the converted