DotNetShoutout - Stories tagged with finally
3
Shouts

Rx - Exception Handling - Bnaya Eshet

published 511 days, 12 hours, 8 minutes ago posted by bnayabnaya 515 days, 1 hour, 18 minutes ago
Thursday, January 26, 2012 7:21:11 AM GMT Sunday, January 22, 2012 6:11:06 PM GMT
Rx - Exception HandlingRx - Exception Handling this post will discuss exception handling within the Rx arena. handling event stream exception is not trivial, for example observable should delegate exception to its subscribers though the OnError operation and cancel the subscription. on the other hand the subscriber may want to response OnError state by renewing its subscription or fallback to alternative stream. it is true that the Rx design guidelines suggest that faulted stream should n... (more)
category: Architecture | clicked: 34 | comment | | source: blogs.microsoft.co.il
tags: retry, finally, Exception Handling, Rx, catch, Observable, observer, Linq, try
7
Shouts

TSQL: Error handling with Try Catch from a .NET perspective « Mehroz’s Experiments

published 1132 days, 7 hours, 16 minutes ago posted by mehrozmehroz 1135 days, 4 hours, 54 minutes ago
Saturday, May 15, 2010 12:12:16 PM GMT Wednesday, May 12, 2010 2:34:54 PM GMT
Starting with SQL 2005, we can handle unexpected situations in our TSQL scripts/procedures/functions in an structured manner using the famous Try/Catch methodology, similar to what we are used to in our object oriented programming languages (C#, Java, etc). This post will describe certain similarities and how to enjoy the features that look absent at the first look. (more)
category: Data | clicked: 0 | comment | | source: smehrozalam.wordpress.com
tags: finally, Exception Handling, error handling, TSQL, catch, try