KC Bérenger
KC Bérenger

Reputation: 33

Flex : Is it possible to stop a remote call?

I search for a long time, but I still not found the answer.

In common case, we keep the token of a remote method call, Flex -> Java for example. But, if the client know that the current call is not needed anymore, how stopping the server processing ?

With an asyncToken, is it possible to stop a remote call ?

Thanks for your answer.

Upvotes: 1

Views: 691

Answers (1)

JeffryHouser
JeffryHouser

Reputation: 39408

As I understood it, an AsyncToken just provides extra data for some operation. You'll need to access that operation to cancel.

IF you're calling an HTTPService, you use the cancel() method.

If you're using a WebService, you should be able to call getOperation() method and then cancel() the corresponding operation.

If you're using a RemoteObject you should be able to call getOperation() method and then cancel() on the corresponding operation.

Upvotes: 3

Related Questions