Always remain updated about current software development trends

Articles having tag: TPL

Tpl Dataflow walkthrough - Part 5 - Bnaya Eshet

Tpl Dataflow walkthrough - Part 5Tpl Dataflow walkthrough - Part 5 this post is a complete walkthrough of a web crawler sample that was build purely by using Tpl Dataflow. it was built on .NET 4.5 / C# 5 (on a virtual machine using VS 11). I will analyze...

Smoothing Kinect Depth Frames in Real-Time

Removing noise from the Kinect Depth Frames in real-time using pixel filters and weighted moving average techniques.

async / await, some reasoning - Bnaya Eshet

async / await some reasoningasync / await some reasoning this post will try to make some reasoning about the .NET 4.5 / C#5 await keyword. I will begin a quiz. how long will it take to the following method to produce the 42 value?Code SnippetasyncTask

Using async / await - Bnaya Eshet

Using async / awaitUsing async / await this post will discuss parallel disposal. whenever we want to dispose a parallel execution upon completion we can't use the convenient using keyword. for example, the following code may be dispose the command before...

async \ await and Exception Handling - Bnaya Eshet

async \\ await and Exception Handlingasync \\ await and Exception Handling this post will discuss how async / await is handling exceptions. as we mention in previous post, about the async / await concept, await is all about continuation. before .NET 4.5...

TPL - Continuation - Bnaya Eshet

TPL - ContinuationTPL - Continuation this post will discuss TPL Continuation. TPLcontinuation can chain task into a pipeline. when dealing with dependencies between parallel work units, like [encoding -> compression -> encryption], continuation is the...

Tpl Dataflow - Part 3 - Bnaya Eshet

Tpl Dataflow - Part 3Tpl Dataflow - Part 3 the previous post discus the concept ITargetBlock which is the TDFconsumer contract. this post will focus on the source block which is the producer contract. as mention in previous post, sources and targets engage...

.Net asynchrony in the UI context

UI and concurrent programming using IAsyncResult, BackgroundWorker, TPL and \u2018async' syntax

Blocking Collection and the Producer-Consumer Problem

This time I want to discuss features that belong to the newSystem.Collections.Concurrentnamespace in the.NET Framework 4. When you design parallel applications, you often need thread-safe data storage as well as some mechanism of sending messages between tasks....

Parallel Programming: Task Cancellation

In this post, which is the third one in myparallel programming introductionseries, I want to show how you can cancel parallel operations when working with theTask Parallel Library (TPL). I'm going to modify the program that I started in the previous posts....