0
votes
0answers
29 views

Python: [Help] Best use of asynchronous timer (Non Blocking Timer)

My question is if I have a thread program that runs in an infinite loop and each loop does a simulation step, at every loop there might be a request for timer to do something. This sounds easy but the ...
2
votes
1answer
59 views

How wait asynchronous method in a thread?

I need that Join method is called when Download.file method have finished. I tried to add await keyword but it didn't work Thread myThread = new Thread(new ThreadStart(()=> await ...
1
vote
1answer
111 views

What Should I be using here? Threading? Async?

I am not sure what to use in this scenario. I have an asp.net web api method that basically does this Finds points of interests from foursquare near user. Uses the foursquare locations to do ...
-6
votes
0answers
97 views

how to perform asynchronous operation in a single thread? [closed]

Is it possible to perform asynchronous operation in a single thread?If yes,how?
0
votes
2answers
40 views

Design pattern for asynchronous while loop

I have a function that boils down to: while(doWork) { config = generateConfigurationForTesting(); result = executeWork(config); doWork = isDone(result); } How can I rewrite this for efficient ...
0
votes
0answers
47 views

how to run multiple threads from the same method with differant values

i have some code that should make differant plants grow at differant times.... but atm when the next plant is placed it just carries on the method instead of creating a new instance of that method.... ...
1
vote
2answers
88 views

What is the difference between making an Async web service call and making a Synchronous web service call in another thread?

And/or, when to use either one? Is it a matter of preference or is there a technical difference? Bit of background on why I am asking: I have an app running a .NET 2.0 CF app and the user is making ...
0
votes
1answer
30 views

With-Statement and Threading :Making function execute before run

This question is a follow up from following question:With statement and python threading I have been experimenting with python threading api. I have this code which works for what I want to achieve ...
0
votes
1answer
50 views

With statement and python threading

I am a noob in python trying to understand the threading module. I am using python 2.7.One of the motivation for with_statement in python was given to be code pattern of with threading.Lock(): ...
0
votes
2answers
60 views

How to use cancellationToken in MVC3?

I am newbie to MVC3. In my project MVC3, i'm using threading for import excel sheet to Database and it works perfectly. I have a doubt on the following, 1) How to stop the thread using ...
0
votes
2answers
55 views

Multiple Threads Using GCD while Fetching Photos

I have to fetch contacts from the Address Book and show photo beside each if found in a UITableView. I fetch all contacts using ABContactsHelper library and then asynchronously fetch photos for ...
0
votes
2answers
36 views

Best way to execute method asynchronously in Android (compact and correct)

Say I have Activity showing some content on screen. I need to execute some method (asyncMethod) asynchronously and when it is done, to update data on screen. What is the most correct and simple way to ...
0
votes
2answers
143 views

C# WPF Application with TCP Socket and Multiple Threads

Recently, I have undertaken a project and I would like some help from the community with regards to how I can go about learning what I need to and in what order. I.e., this is less technical than ...
0
votes
1answer
49 views

How to limit the number of threads for a certain region of code?

foreach (var action in actions) { Task.Factory.StartNew(action); } But, what if I need to limit the number of actions that run in the same time? How do I do that?
1
vote
1answer
202 views

in C# how to run method async in the same thread

Is it possible to define and call method asynchronously in the same thread as the caller? Suppose I have just one core and I don't want threading management overhead with like 100 threads. Edit The ...
0
votes
2answers
63 views

Multiple BackgroundWorkers c#

I have a server application which uses two BackgroundWorkers: 1) Used to constantly check if the SVN repository was updated. 2) Used for managing a queue of processes. BackgroundWorker ...
0
votes
3answers
54 views

Efficiency - use of Thread.yield in loop that waits for variable change

I've got some code that looks like the following: while (this.conditionIsNotYetMet){ if (timeout()) break; // Don't do anything, just wait till the condition is // filled by a different ...
-2
votes
1answer
28 views

PDO Not Synchronized?

I am getting the idea that when I have a prepared statement with the PDO driver (you first prepare a statement and bind any variables to it and then execute it) that the rest of the PHP code continues ...
0
votes
1answer
33 views

All AJAX request complete?

I am working on a web site, and at some point in my code, I make some AJAX call: PART(I) for (var i = 0; i < arr.length; i++){ var id = arr[i].id; makeXHRRequest(id); } and ...
0
votes
2answers
79 views

Creating a multi-thread webdownload via WebClient / BeginInvoke Method

I have actually the following code: private Stopwatch _sw; public void DownloadFile(string url, string fileName) { string path = @"C:\DL\"; Thread bgThread = new Thread(() => { ...
1
vote
0answers
41 views

Synchronization context in asynchronous WCF per call service

I have a WCF service, for example: public interface IService { [OperationContract(AsyncPattern = true)] IAsyncResult BeginGet(Request productsRequest, AsyncCallback callback, object state); ...
0
votes
1answer
45 views

Want to start a long running process and then go directly to a page that will poll the database to report progress (MVC 4)

I have read a couple articles with no clear idea of the right way to do this.. So my basic thinking is I can create a thread and run that and then have the controller go to another view... In that ...
2
votes
1answer
44 views

Accessing last “number” of elements in String Array in Android

I've got a String Array containing tens of thousands of elements and constantly growing, and am now looking for a way to obtain and process only last 3000 each 60 seconds in the background thread. ...
0
votes
1answer
92 views

Asynchronous controller and ASP.NET thread handling

I have a web application with web layer is a ASP.NET MVC 3 web application, service layer is WCF, database is MSSQL In this article: ...
0
votes
2answers
53 views

PipeInputStream and PipeOutputStream synchronous or asynchronous?

I'm reading a Java book I found a sentence that seems incorrect: When reading, if there's no data available, the thread will be blocked until it new data will be available. Notice that this is a ...
0
votes
0answers
52 views

System.Threading ThreadPool and ThreadStaticAttribute

I use asynchronous sockets. If i understand the functionning, there isn't a thread for each BeginReceive because aynchronous event use ThreadPool (I don't understand the difference between thread and ...
1
vote
1answer
89 views

Serial port handler error when perl thread exit

I'm using threads in perl (5.12 ActiveState) to allow parallel and asyncronous writing on two different COM ports on Windows. This is how my code looks like: #!/usr/bin/perl use warnings; use ...
0
votes
1answer
44 views

Sockets Winsock async blocking Read Write simultaneously

I have a client server arch and I am using blocking win sockets. I have a read and a write thread both on the server and on the client side. Say Client is waiting (blocked) on a read() call for ...
1
vote
1answer
54 views

Threads vs Asynchronous Execution in Python

I'm relatively new to threading and asynchronous programming in general, but I'm trying to understand the distinction between the two as it relates to the GIL in CPython. From the reading that I've ...
0
votes
1answer
70 views

Asynchronous Response in ASP.NET

I'm currently working on an e-commerce project and I need some help with my payment page. At the checkout page, I get the users' payment info which is a GSM number only, I post it to the payment ...
1
vote
0answers
31 views

How would you implement joining of data from database and web-service in EJB3?

I need to fetch some data from external service. I dont know yet whether that service will be a simple servlet, or may be web-service, or something else. Lets assume that by now external service is ...
0
votes
1answer
66 views

Simultaneous asynchronous API call

I have a Windows application which must make an API call exactly 20 times every second. The requirement is that the reads must be done very CLOSE TO SIMULTANEOUSLY (within milliseconds). The ...
3
votes
1answer
109 views

How to monitor for async/await deadlocks in MVC4?

After reading Best Practices in Asynchronous Programming i decided to test the deadlock behavior in MVC4. After creating the website from the Intranet template I modified the Index action like this: ...
0
votes
1answer
45 views

Make JavaMail fast

I am trying to add email notification features to my Restlet server. I just learned today from Stackoverflow that Java Mail is synchronous. So there are two obvious options: 1. use a really fast SMTP ...
0
votes
0answers
105 views

issue with pulling data from Afnetworking completion block to separate uiviewcontroller

Hi I have a problem I'm facing right now with pulling data from Afnetworking completion block to a separate uiviewcontroller. Right now I have a three files: 1st file: the parent class ...
1
vote
1answer
133 views

How to update inmediately shared variables between threads

My test program asks for a string and prints it every 2 seconds. I've read some already about java memory model or how threads don't immediately update their variables on the main memory. I've tried ...
0
votes
0answers
96 views

Non-blocking asynchronous web service

I'm calling an asynchronous web service which takes up to and possibly beyond one minute. I initiate a request to the backend and immediately get a synchronous SOAP response containing a request ID ...
1
vote
2answers
147 views

Azure ServiceBus & async - To be, or not to be?

I'm running Service Bus on Azure, pumping about 10-100 messages per second. Recently I've switched to .net 4.5 and all excited refactored all the code to have 'async' and 'await' at least twice in ...
1
vote
3answers
244 views

What is the iOS (or RubyMotion) idiom for waiting on a block that executes asynchronously?

I have been pulling my hair out for weeks on this niggling problem, and I just can't find any info or tips on how or what to do, so I'm hoping someone here on the RubyMotion forums can help me out. ...
2
votes
3answers
91 views

Asynchronous methods(!) clarification in .net?

I've been reading a lot lately about this topic and , still I need to clarify something The whole idea with asynchronous methods is Thread economy : Allow many tasks to run on a few threads. ...
1
vote
1answer
102 views

Timer not stopping when form closed

I am having an extremely bizarre bug that I cant seem to figure out. I will lay this out as best as I can. Context: I have an application that will continually ping about a group of IP's that live ...
0
votes
0answers
95 views

ASP.net Stopping long running sql query

I have a select operation in my web application which takes considerably large amount of time. I would like to implement a cancel function triggers with a cancel button click, When it is fetching a ...
0
votes
3answers
281 views

Create and update UI elements Async Wpf

I'm trying to load serveral images async into the ui. When an image is loaded (a bitmap is created form a path), the image should be set as the fill of a rectange on the window. When i put the ...
-3
votes
2answers
64 views

Multitasking in windows form in c# [duplicate]

Here in my code.... List<Task> t; private void Form1_Load(object sender, EventArgs e) { t = new List<Task>(); t.Add(Task.Factory.StartNew(() => Download())); ...
0
votes
0answers
100 views

Kill Asynchronous thread

I'm trying to read the HttpResponse.GetResponseStream() Asynchronously Stream source=myHttpResponse.GetResponseStream(); IAsyncResult asyncResult = source.BeginRead(buffer, 0, new[] { ...
0
votes
1answer
93 views

Limiting HttpWebResponse stream reading speed

I use this code to read a HttpWebResponse stream Stream stm = httpResp.GetResponseStream(); Stream fs = new FileStream(filename, FileMode.Append, FileAccess.Write); ...
1
vote
2answers
111 views

async await and shared objects

I'm using the async / await pattern to perform some CPU heavy operations on an object (my method is awaitable), which works as supposed without blocking the UI thread. However, when i pass the object ...
0
votes
0answers
75 views

Why doesn't AutoResetEvent work BeginSend?

I've written a serverside application that manages many clients using BeginSend() and EndSend() I'm struggling for the past hours to make sure no consequent BeginSend() calls are called for the same ...
1
vote
3answers
49 views

What is the significance of “WorkerSupportCancellation” in Backgroundworker C#

I guess the default behaviour is, the user can cancel the long running process when I implement it with background worker. What is the significance of WorkerSupportCancellation" ? If I don't use ...
2
votes
3answers
4k views

How does one implement a truly asynchronous java thread

I have a function that needs to perfom two operations, one which finishes fast and one which takes a long time to run. I want to be able to delegate the long running operation to a thread and I dont ...

1 2 3 4 5 14