Tagged Questions

0
votes
3answers
99 views

C# -Threading help for beginner

I want to run three threads (i) one should append strings into a file.(ii) The other thread should remove special characters from the written stream.(iii)The third thread should so …
0
votes
7answers
66 views

Should I read file in separate thread in this case ?

Hi, I am writing an application for embedded linux where 5% of processor time is going in reading a file and 95% on processing it. Can I get some performance improvement if I read …
2
votes
0answers
47 views

About grouping sql queries in django…

Hello! I found an ambiguous place in one django-based application that I use in my project, please look at that: if not request.method == 'POST' or not request.POST.get('openid'): …
2
votes
10answers
121 views

When to use and when not to use threads? [closed]

When to use and when not to use threads?
0
votes
3answers
44 views

Exception when loosing a thread

I start two threads with a Timer and TimerTasks Timer timer = new Timer(); TimerTask task = new TimerTask() { public void run() { doSomething(); } …
4
votes
3answers
113 views

java.util.concurrent vs. Boost Threads library

Hi, How does the Boost Thread libraries compare against the java.util.concurrent libraries? Performance is critical and so I would prefer to stay with C++ (although Java is a lot …
6
votes
3answers
115 views

How to synchronize Swing model with a rapidly changing “real” model?

As is widely known, anything related to Swing components must be done on the event dispatch thread. This also applies to the models behind the components, such as TableModel. Easy …
0
votes
8answers
61 views

i want to continously run my java threads

I am running my java application where i have used threads... i am running this application using ant command on the terminal.. But when i close my terminal or press ctrl+c,then ja …
3
votes
2answers
104 views

Question about mutexes and locks

Are the two code samples below equivalent? Poco::ProcessHandle::PID ProcessRunner::processId() const { Poco::ProcessHandle::PID pid = 0; mMutex.lock(); pid = mPID; …
1
vote
5answers
29 views

ensure runnig finally in spawned Thread, when spawner hits a RuntimeException?

Hi, Ran into a problem. I have a spawned thread that must call its finally block. Assuming code below, is it possible to ensure that finally in the runnable is called? import org …
0
votes
0answers
14 views

IllegalStateException shutting down webapp with PicoContainer

I have a Java webapp that's using PicoContainer for dependency injection. When I shut down the app, I sometimes get the following stack trace repeated a few times in my error log: …
0
votes
0answers
15 views

WCF - starting a new thread asynchronously

Setup WCF Service running in IIS 6 Caching - Enterprise.Caching There's a business need to hold on to a message for a x amount of time(cache). Another process will remove it fro …
1
vote
1answer
17 views

app pool settings kill threads but keep settings

.net 2.0 aspx app / IIS6 creating a silly number of threads in w3wp.exe process app pool. The app has been isolated to its own app pool with the following settings: RECYCLING r …
2
votes
1answer
53 views

C# problem with redirecting standard error

The main form in my application launches a new thread, and then opens another form, which serves as a progress window. The thread pipes some data between 2 console applications, an …
1
vote
2answers
64 views

Should I kill a function running as a thread (.Net)

Hi, I've just started with C#. I'm running an object's function as a thread (new Thread(myFunc).Start()). Does the thread kill itself when the function is finished or must I manua …

1 2 3 4 5 22 next
15 30 50 per page