The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
34 views

How to get the changes reflected when I call a function using Threading Asp.net

I am Threading to Call a function and assign values to a Textbox in Asp.net. When I debug it is showing value, but in the Form it is not getting reflected. Below is my code. Protected Sub ...
0
votes
0answers
42 views

I want to run a script multiple times sequentially in python

I have a python script which basically calls a few functions, but takes quite a while to complete. I want to be able to run this script many times on a loop. I need the script to wait until it's ...
2
votes
0answers
92 views

Single-threaded Java Websocket for Testing

We are developing an application with Scala and Websockets. For the latter we use Java-Websocket. The application itself works great and we are in the middle of writing unit tests. We use a WebSocket ...
1
vote
2answers
54 views

GC settings for single threaded application

Single thread eliminates a lot of complications involved in multithreaded application. I was wondering if there are garbage collector configurations which can take advantage of single threaded ...
-1
votes
1answer
46 views

GWT single threaded callbacks

positionService.call(new PositionCallback(){ onPositionUpdate(Position position) { this.position=position; if (isLoaded){ refreshDataWithPosition(); } }); dataService.call(new ...
2
votes
4answers
96 views

GWT Single threaded async callbacks

rpc.call(mycallback); { //subsequent code block } How does the single threaded async callback work? When will the callback get called? Will the subsequent code block always finish executing ...
1
vote
1answer
47 views

How do I implement CloudPort side logic? JScript or VBScript produce an ActiveX control fault (even when left dummy, with empty-body functions)

The team I am working with has bought a CloudPort license (from CrossCheck Networks) and we are currently facing the problem of not being able to implement any sort of logic in the service Mocks (to ...
2
votes
3answers
83 views

How to use setTimeout in a recursion to avoid browser from getting stuck on complicated processes

I have this code that uses an inefficientProcess() that consumes plenty of memory: My goal is to use some sort of setTimeout(function(){...},0) technique so the browser will not get stuck while ...
1
vote
1answer
87 views

If Javascript is not multithreaded, is there any reason to implement asynchronous Ajax Queuing?

I am having issues with my php server (my computer is the only connection). I initially thought part of the reason was because of too many ajax requests (I have a script that executes an ajax request ...
1
vote
1answer
120 views

Single Threaded Program vs Multithreaded Program (measuing time elapsed)

I want to know if I need to measure time elapsed then Single Threaded Program is good approach or Multithreading Program is a good approach for that. Below is my single threaded program that is ...
1
vote
1answer
227 views

How to properly stop single threaded windows service (onStop)?

I have got a windows service written in VS 2010 / .NET 4.0. The service is following the scheme of the code snippet below: Using a timer, it executes some desired behaviour every couple of minutes. ...
0
votes
1answer
297 views

Force a stored procedure to run single threaded

I have a stored procedure running on a multi-core system. It is executed in multi-threaded way. Due to, may be, some thing in the query, execution of some of the threads hangs forever with cx_packet ...
0
votes
0answers
55 views

Is Apache launching CGI single threaded?

I know Apache could run multiple CGI processes in parallel. But how about the process to launch CGI processes? I was doing some tests for Apache CGI on Ubuntu 12.04. I wanted to know how long apache ...
1
vote
2answers
117 views

Freeing Resources in C#

I have a program running on [STAThread] in C#. The program periodically creates instances of a class X and adds them to a list. After a period of time, the tasks that these instances of X are ...
1
vote
1answer
300 views

Tornado non-blocking while run in single thread?

Tornado is non-blocking webserver. However, all of the operations are run in a single thread. How does it stay non-blocking if it is handled by single thread? If there is a long operation, will it ...
1
vote
1answer
67 views

Browser stops responding to events during function execution, breaking “draggables”

I have a slider a little like this: ________ ------------| |--------------------------------------- : <-- | slider | --> : : : : ...
3
votes
1answer
152 views

How do I check whether the other end has closed my socket stream, from a single thread?

The usocket FAQ suggests that the way I should do this is by reading from a socket-stream and checking for an end-of-file result. That works in the case where I've got one thread active per socket, ...
2
votes
2answers
267 views

How to marshal work onto single thread c#

I have an app that needs to process some packets from a UDP broadcast, and write the result to a SQL database. During intervals the rate of incoming packets gets quite high, and I find that the ...
2
votes
1answer
3k views

ActiveX control cannot be instantiated because thread is in a single-threaded apartment. Happens after waking PC from sleep

I am working on a VOIP client (Window's form) that opens a browser window (ExtendedWebBrowser) when a call is made or received. Normally it works fine but if the computer is put into sleep mode and ...
3
votes
3answers
700 views

ExtJs: What will be the sequence of code execution in ajax call?

Given the fact that Javascript is a single-threaded language, what would be the sequence of execution in the following code in ExtJs? FuncA(); Ext.Ajax.request({ url: 'ajax.php', params: { ...
1
vote
1answer
267 views

Is netty's udp running in single-threaded mode?

Is netty's udp running in single-threaded mode? I have configured the NioDatagramChannelFactory like below: new NioDatagramChannelFactory(Executors.newFixedThreadPool(4), 4)); But, when I running ...
0
votes
0answers
116 views

The “while true” loop takes only 50% CPU?

I'm building a single threaded HTTP server in which I use a "while true" loop to read from port 80. However, I wonder that on Windows this "while true" loop takes only 50% CPU. How does Windows ...
0
votes
0answers
107 views

How do I do single-threaded dll/com messaging in Scala? (Actors)

I'm trying to setup Canon's EDSDK (for controlling Eos cameras), and it event handlers need to be handled by callbacks via the User32 Get/DispatchMessages api (in Windows at least). The event ...
2
votes
1answer
241 views

Number of threads created is 12 but still runs only on one core of 12 core-CPU

I have a strange issue. I have a Matlab mexfunction in which I have used OpenMP directives/functions. Before the beginning of a parallel section (parallel for...), I use commands to set and print the ...
0
votes
1answer
186 views

Get User info in WCF-service with [STAOperationBehavior] attribute

I have a silverlight-enabled WCF-service, of which one method absolutely requires the [STAOperationBehavior] attribute. I need to access user details (Forms Authentication) for the user, but ...
2
votes
1answer
585 views

Single-Threaded Windows Service Delaying OnStop

I have a Windows Service (C# 4.0) that picks messages off of a private message queue and for each message sends one or more emails (typically 4 or 5 at most) based on message content. Message volume ...
0
votes
0answers
162 views

Connection Pool Size for Fixed Thread Program

I have a fixed thread java program. It is implemented with Spring Integration and ActiveMQ. Fixed thread here means that program has multiple threads but the count of them in runtime don't change. Now ...
1
vote
0answers
82 views

How many memories can be allocated to the single-threaded in Android? [closed]

How many memories can be allocated to the single-threaded by system? The maximum and the minimum ? malloc swap+RAM * 0.5 ? Or, is there no limit ? Thanks.
3
votes
4answers
1k views

Why is this OpenMP program slower than single-thread?

Please look at this code. Single-threaded program: http://pastebin.com/KAx4RmSJ. Compiled with: g++ -lrt -O2 main.cpp -o nnlv2 Multithread with openMP: http://pastebin.com/fbe4gZSn Compiled ...
1
vote
3answers
178 views

Does Java enforce as-if-serial for single threaded applications

I am running some JUnit tests on a single thread and they are failing in a non-deterministic way. I had one person tell me that the optimizing JVM (Oracle Hotspot 64-Bit 17.1-b03) is executing the ...
2
votes
2answers
307 views

WCF - possible to switch between single-thread and multi-thread purely through config?

I have developed a WCF service (which happens to listen on an MSMQ queue). I haven't put any specific threading-related code in, so it runs by default in a multi-threaded manner. This will be fine ...
2
votes
1answer
1k views

Handling multiple TcpClient connections without using threads

I've got a C# program with lots (let's say around a thousand) opened TcpClient objects. I want to enter a state which will wait for something to happen for any of those connections. I would rather ...
3
votes
2answers
2k views

How to implement a full duplex channel over TCP with a single thread?

The network lib I'm writing needs to send and receive messages through a TCP socket. Messages can be sent or received any time, i.e should work as a full duplex channel. I was able to implement such ...
2
votes
2answers
432 views

Why can I deadlock in a single-threaded FLTK application?

I have a supposedly single-threaded FLTK application with a popup menu, created with Fluid. I have a class that sub-classes Fl_Gl_Window and implements a handle() method. The handle() method calls a ...
4
votes
2answers
1k views

Getting the exit code from a process submitted with qsub on Sun Grid Engine

I would like to submit jobs via qsub on Sun Grid Engine (now: Oracle Grid Engine?). I do not wish to use the -sync yes option or qrsh, because I want my controlling program to be single-threaded and ...
3
votes
6answers
268 views

Semaphores in a single thread

I was wondering whether it would ever make sense to use a mutex or semaphore when there is only one thread?. Thanks for your help.
2
votes
4answers
2k views

Deadlock in Single threaded application

Can a single threaded application have a deadlock? If so, please provide an example.
0
votes
1answer
123 views

Can you configure a JBoss web app to be single threaded?

Can you configure a JBoss web application to be single threaded? Ie: only accept one incoming web request (ie: socket connection) at a time? Or is there a way to say max 3 concurrent connections? I ...
18
votes
2answers
30k views

Single-threaded apartment - cannot instantiate ActiveX control

I need to get information about applied CSS styles in HTML page. I used AxWebBrowser and iterate IHTMLDOMNode. I'm able to get all the data I need and move the code into my application. The problem is ...
1
vote
3answers
162 views

timeout for method on UI thread

I have the problem that I'm instanciating an object on the UI-thread (WinForms). This object creation probably takes very long, and I would like to have some sort of a "timeout" for that method ...