Tagged Questions
The deferred-execution tag has no wiki summary.
7
votes
2answers
2k views
How exactly does <script defer=“defer”> work?
I have a few code blocks and some of them depend on other ones. I saw the defer attribute can come in handy here as it allows code blocks to be postponed in execution.
To test it I executed this on ...
6
votes
5answers
384 views
Linq - What is the quickest way to find out deferred execution or not?
What is the quickest way to find out which .net framework linq methods (e.g .IEnumerable linq methods) are implemented using deferred execution vs. which are not implemented using deferred execution.
...
6
votes
2answers
188 views
How can i mock or test my deferred evaluation/execution functionality?
I have what could be seen as a bizarre hybrid of IQueryable<T> and IList<T> collections of domain objects passed up my application stack. I'm trying to maintain as much of the 'late ...
6
votes
6answers
1k views
Deferred execution in C#
How could I implement my own deferred execution mechanism in C#?
So for instance I have:
string x = DoFoo();
Is it possible to perform some magic so that DoFoo does not execute until I "use" x?
5
votes
1answer
1k views
Understanding jQuery Deferred.pipe()
I am trying to implement the jQuery Deferred.pipe() method for the following scenario:
Add a user in DB via $.ajax()
Get response whether user was added correctly or not.
If successfully added, get ...
5
votes
1answer
96 views
How can I iterate over several IEnumerables simultaneously
Assume I have two (or more) IEnumerable<T> with many elements. Every IEnumerable has another type T. The lists can be extreme long and should not be loaded to memory completetly.
...
5
votes
2answers
1k views
Expose IQueryable Over WCF Service
I've been learning about IQueryable and lazy loading/deferred execution of queries.
Is it possible to expose this functionality over WCF? I'd like to expose a LINQ-to-SQL service that returns an ...
5
votes
1answer
506 views
twisted: difference between `defer.execute` and `threads.deferToThread`
What is the difference between defer.execute() and threads.deferToThread() in twisted? Both take the same arguments - a function, and parameters to call it with - and return a deferred which will be ...
5
votes
1answer
383 views
yield returns within lock statement
if i have a yield return in a lock statement does the lock get taken out on each yield (5 times in the example below) or only once for all the items in the list?
Thanks
private ...
4
votes
6answers
79 views
Will Dispose be called first and cause a failure in case of deferred execution?
There are two methods, one of which returns a data using LINQ within a using statement. I wonder if it's possible for the query to throw some sort of an exception because the query execution is ...
4
votes
2answers
179 views
Implementing the ‘defer’ statement from Go in Objective-C?
Today I read about the defer statement in the Go language:
A defer statement pushes a function
call onto a list. The list of saved
calls is executed after the
surrounding function returns. ...
4
votes
3answers
846 views
How to defer a Django DB operation from within Twisted?
I have a normal Django site running. In addition, there is another twisted process, which listens for Jabber presence notifications and updates the Django DB using Django's ORM.
So far it works as I ...
3
votes
1answer
88 views
Dealing with Arrays of Deferred Objects
Since using $.Deferred I've run into this scenario a couple times: I have a list of values each of which yields a Deferred Object in some way and I want to execute a callback once all of the Deferred ...
3
votes
1answer
88 views
LINQ: using IEnumerable.Count() or IList.Count for better performance
Based on the following code:
var grouped = filters.GroupBy(p => p.PropertyName);
int numOfRowElements = grouped.Count();
foreach (IGrouping<string, PropertyFilter> ...
3
votes
1answer
78 views
Reusing an IEnumerable<T> results in false result, e.g. on .Any()
I'm a little lost in deferred execution land:
I declare an instance of an IEnumerable implementing class
var wordEnumerable = new WordEnumerable(_text);
Then I iterate over it (the first word is ...
3
votes
1answer
46 views
How much information does the deferred library allow a packaged function access to?
I know that if I defer a function and pass some args to it, the function has those args and can work with them, but can a function that's part of an instanced object (for example) access the variables ...
3
votes
3answers
151 views
Does the non-generic version of IEnumerable support deferred execution?
If so, on what .NET Framework versions is it supported?
I have tested this on .NET Framework 4.0 and it works fine:
using System;
using System.Collections.Generic;
public class TestClass
{
...
3
votes
1answer
210 views
C#, NUnit: How to deal with testing of exceptions and deferred execution
Say we have a method that looks like this:
public IEnumerable<Dog> GrowAll(this IEnumerable<Puppy> puppies)
{
if(subjects == null)
throw new ArgumentNullException("subjects");
...
3
votes
4answers
1k views
How to maintain LINQ deferred execution?
Suppose I have an IQueryable<T> expression that I'd like to encapsulate the definition of, store it and reuse it or embed it in a larger query later. For example:
IQueryable<Foo> myQuery ...
2
votes
1answer
88 views
Deferred execution vs ToList gives different results
I'm in the middle of unit testing a function I wrote to search a queryable of items. I just assert that I get 1 item back, which I should get if the method works. But I get 0 items back. In my method ...
2
votes
1answer
696 views
What is a browser event loop?
I have been doing some web application programming using GWT and have been confused by the term "browser event loop".
I have encountered situations where I need to execute deferred commands and "do ...
2
votes
2answers
127 views
Deferred execution in VB.NET?
Private Sub LoadData(Of T)(ByVal query As ObjectQuery(Of T),
ByRef result As IEnumerable(Of T))
If Connection.State = ConnectionState.Open Then
result = query.ToArray
Else
AddHandler ...
2
votes
2answers
82 views
What is the difference between these two linq implementations?
I was going through Jon Skeet's Reimplemnting Linq to Objects series. In the implementation of where article, I found the following snippets, but I don't get what is the advantage that we are gettting ...
2
votes
1answer
131 views
Returning IEnumerable with using
Interesting problem I ran across which makes total sense. I have a generic method like so:
public TResult Run<TResult>(Func<SqlDataReader, TResult> resultDelegate)
{
TResult result;
...
2
votes
0answers
203 views
Task Chaining with Cursor issue on app engine. Exception: Too big query offset. Anyone else get this issue?
I'm not sure if anyone else has this problem, but I'm getting an exception "Too big query offset" when using a cursor for chaining tasks on appengine development server (not sure if it happens on ...
2
votes
2answers
226 views
How can I evaluate a deferred Linq statement when debugging?
I'm debugging in VS2010, and I want to inspect a string value but all I can get the debugger to show me (through watches, hovering, locals, etc.) is:
...
1
vote
3answers
120 views
When to force LINQ query evaluation?
What's the accepted practice on forcing evaluation of LINQ queries with methods like ToArray() and are there general heuristics for composing optimal chains of queries? I often try to do everything in ...
1
vote
1answer
53 views
Fine-grained control of deferred execution when implementing IQueryable<T>
I am implementing IQueryable, and so far have only implemented an expression visitor for 'Where' calls and everything else is currently unsupported. The expression is translated into native T-SQL. I ...
1
vote
3answers
145 views
Why is there a different runtime behaviour with deferred execution using the “yield” keyword in c#?
If you call the IgnoreNullItems extension method in the sammple code below the deferred execution works as expected however when using the IgnoreNullItemsHavingDifferentBehaviour the exception is ...
1
vote
1answer
169 views
finalizing / post-processing chained methods
Assuming I have an Array-like object which allows for chaining methods like so:
var ds = new DataSet(items);
var subset = ds.filter(condition1).filter(condition2);
Is there a way to execute code ...
1
vote
3answers
98 views
Linq deferred execution
I wrote a simple program, here's what it looks like, some details hidden:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ...
1
vote
2answers
405 views
Linq: Xml to IEnumerable<KeyValuePair<int, string>> deferred execution?
I'm trying to pull out the Roles below into an IEnumerable<KeyValuePair<int, string>>
<PROJECT PROJECT_NO="161917">
<CONTACT CLIENT_ID="030423253272735482765C" ...
1
vote
3answers
156 views
Deferred execution of List<T> using Linq
Say I have a List<T> with 1000 items in it.
Im then passing this to a method that filters this List.
As it drops through the various cases (for example there could be 50), List<T> may ...
1
vote
2answers
46 views
Child sProc cannot reference a Local temp table created in parent sProc
On our production SQL2000 instance, we have a database with hundreds of stored procedures, many of which use a technique of creating a #TEMP table "early" on in the code and then various inner stored ...
1
vote
1answer
120 views
Why can't a Deferred be passed to a callback in Python Twisted?
d = Deferred()
d.callback(Deferred()) # Assertion error saying that a Deferred shouldn't be passed
Why is this? I looked through the code and commit messages / Trac and see no reason why this should ...
1
vote
1answer
185 views
What methods can I use to rearrange the order of javascript function execution?
How to rearrange javascript function execution order independent of include order.
A question that assists, but doesn't completely answer my question: Can you have multiple ...
1
vote
2answers
205 views
Persistence of deferred execution linq expressions
We're trying to serialize some data, and one of the items in a collection is a "deferred execution linq statement" (actually it's the result of a Concat call on a collection).
The problem is how to ...
0
votes
0answers
21 views
load scripts asynchronosly and have a fallback
My objective here is to load scripts asynchronously when the browser supports defer or async.
If the browser supports neither I don't care about asynchronous loading (not my bad).
I want to make sure ...
0
votes
1answer
33 views
Server-side execution of Entity Framework Query combined with Stored Procedure
Is it possible to call a StoredProcedure from an ObjectQuery? Basically I want to dynamically build a query and execute it server-side. You can imagine each query to be part of a search where you can ...
0
votes
2answers
64 views
defer loading of JS libraries AND several document ready functions
i managed to defer loading of JS libraries and also one document ready function, following this post Possible to defer loading of jQuery?
However, I have multiple document ready functions that are ...
0
votes
0answers
20 views
How to adjust and execute Ant task from BeanShell script?
I have large jar task in my ant build file. But I don't want to execute it immediately. I want to add some filesets to the task and only than execute it. I don't want to define the jar task completely ...
0
votes
3answers
242 views
Using LINQ .Select() to cast into new type is TOO slow?
Current project, broke head over this problem:
Client Repository:
public class ClientRepository
{
// Members
private masterDataContext _db;
// Constructor
public ClientRepository()
...
0
votes
2answers
123 views
Getting Count() with deferred execution and lazy loading
I have some code that uses deferred execution and lazy loading:
public static IEnumerable<XElement> GetStreamElementP(string fileId, ListProgressEventHandler progressHandler, int total)
...
0
votes
1answer
63 views
does putting Linq query inside a method affect deferred excecution?
Linq query is not executed until the sequence returned by the query is actually iterated.
I have a query that is used repeatedly, so I am going to encapuslate it inside a method. I'd like to know if ...
0
votes
2answers
185 views
Built in .Net IEnumerable class that defers execution?
I was about to build my own IEnumerable class that performs some action on all items the first time something iterates over it then I started wondering, does the framework already have something that ...
0
votes
1answer
395 views
GWT - Implement programmatic tab selection of a TabLayoutPanel and then scroll to a particular element contained in the tab?
I have a TabLayout panel with 2 tabs. I would like to programmatically select the 2nd tab and then scroll to a particular element within the tab. This is how my code looks like:
public void ...
0
votes
1answer
49 views
Jquery same script, same build-up, but different execution time?
I gotta very annoying problem. I've build 2 prototypes of an website,
both have a content slider built with AnythinySlider.
The older version has no problems, execution time and behaviour is fast and ...
0
votes
5answers
128 views
Do something after method returns
This is my situation in pseudocode:
function onRequest() {
receiveConnectionRequest();
response = function onConnect() {
playersConnected++;
if (playersConnected == 4) {
...
0
votes
1answer
129 views
Check if return type is IEnumerable<T>
How can I check if the return type of a function is IEnumerable<T>? In other words, I don't want to match List<T>, even though it implements IEnumerable<T>. Or put even another ...
0
votes
1answer
155 views
What is the best way to defer code execution?
I have many methods calling each other that each have to certain tasks, some of them asynchronous, that all operate on a DOM (so only one thread must access the DOM at any time).
For example:
object ...