The fire-and-forget tag has no wiki summary.
0
votes
0answers
12 views
Running a thread in a servlet, returning to client before compleation of the thread
I have a servlet, which uses a 3. party lib that takes time completing.
Sometimes i don't care about the result of the execution, just that i have tried.
Are there some way to archive what i would ...
2
votes
1answer
205 views
PHP Fire and Forget POST Request
I'm trying to create a fire and forget method in PHP so that I can POST data to a web server and not have wait for a response. I read that this could be achieved by using CURL like in the following ...
0
votes
1answer
144 views
Resolving Autofac components in background Tasks in ASP.NET
Using Autofac in ASP.NET along with the ContainerDisposalModule, how can i support fire and forget calls that have component dependencies that need to be resolved? The problem I'm running into is ...
1
vote
2answers
103 views
how to launch multiple fire and forget PHP scripts with Perl?
I currently have a perl script which I am trying to use to launch three (or more) php scripts each with a set of arguments provided from a database:
$sql = "SELECT ...
0
votes
1answer
640 views
Creating asynchronous thread for REST API processing using Spring Servet
I want to create fire-and-forget model for couple of my REST API calls where server will accept requests on end point, send object for async processing to internal services while releasing client ...
0
votes
2answers
373 views
Java “Fire and Forget” Thread
I have a method
public static void startAnimation() {
new AnimationThread().run();
}
where AnimationThread implements runnable and its constructor is:
public AnimationThread() {
new ...
1
vote
1answer
432 views
C# ThreadPool or BeginInvoke without EndInvoke
On the net there a very different opinions on how to implement a fire and forget pattern.
Some say that it is no issue to call BeginInvoke without calling EndInvoke if one has to implement a ...
0
votes
3answers
468 views
Fire-and-forget in PHP
Final update
Seems like I did make a very simple error. Since I already have a stream implementation I can just not start reading from the stream :D
I'm trying to achieve fire-and-forget like ...
1
vote
1answer
550 views
Stored procedures fire and forget with Entity Framework
I am using the Entity Framework 4.1 within an application. One of the requirments is to execute some stored procedures on the database out of which some take quite some time. Further, those stored ...
5
votes
2answers
800 views
WCF client causes server to hang until connection fault
The below text is an effort to expand and add color to this question:
How do I prevent a misbehaving client from taking down the entire service?
I have essentially this scenario: a WCF service is up ...
3
votes
2answers
199 views
How can I increase the success of “window.OnBeforeUnload” to send an Ajax ping?
I've read dozens of questions and answers on S.O., and none of them answer my particular question... most of them center around popping up a "Oooh, you need to save" message... that is not my need.
I ...
1
vote
2answers
282 views
WCF “Fire and Forget” method is not allowing host execution to continue as expected
I have a windows service hosting a singleton WCF service which caches a large amount of data. On start up of the windows service I am doing the following:
// start client service
wcfService= ...
3
votes
3answers
1k views
Fire and Forget Sql Server Stored Procedure from C#
I'm doing a queued jobs and at the end of each job I want to fire an SP which will do a lot of processing on data. So I don't want to wait for completion of the SP and I just want to move to next job ...
0
votes
2answers
703 views
How to fire-and-forget in WCF when using wsHttpBinding
I have a WCF service hosted in IIS and it is consumed by an ASP.NET application. Service and client are on diferent servers and communicate over internet.
Message security over wsHttpBinding is used ...
2
votes
4answers
866 views
PHP exec(), can I fire and forget?
I have been trying to execute a java application through a php form .. so the submit button fire an execute command:
exec("java -jar c:\edu.uniroma3.jar c:\parameter2BPassed");
The first path ...
2
votes
4answers
435 views
C# Improvement on a Fire-and-Forget
Greetings
I have a program that creates multiples instances of a class, runs the same long-running Update method on all instances and waits for completion. I'm following Kev's approach from this ...
6
votes
4answers
1k views
How can I fire and forget a process in Perl?
Can somebody please tell me how to fire-and-forget a process in Perl? I've already looked at ruby: how to fire and forget a subprocess? for doing the same in Ruby.
