开发者

Method to get the running thread id in javascript/jquery

开发者 https://www.devze.com 2023-01-14 12:33 出处:网络
I am new to javascript/jquery. I have a simple question one of java script function is running and wanted to see the thread id for that thread.

I am new to javascript/jquery. I have a simple question one of java script function is running and wanted to see the thread id for that thread. In java we do like

Thread.getID();//in java

which will print the thread id of running thread. In the similar way what is the function we use to get the running thread id in javscript.

Actually what i want is..

In my JavaScript,开发者_Go百科 I have a listener which is listening to the channel. When ever there is a message in the channel, the callback method is called and processes the data. So here I am trying to see how it works in that way.. Let's say there are 10 messages in the channel and for each message the callback is called.

Let's say the callback method is running for a message "a" and while processing the data for the message "a", it got another message "b". Will the callback method for "b" be called once the processing for message "a" is complete?

I wanted to check this by printing the thread number in the callback function which tells whether it is running sequentially (one thread) or multiple threads. That is why I was trying to print the thread id. Thanks for your responses.

Thanks, Swati


JavaScript is single threaded. So this wouldn't apply to JavaScript.

However, it is possible to spawn multiple threads through a very limited Worker interface introduced in HTML5 and is already available on some browsers. From an MDC article,

The Worker interface spawns real OS-level threads, and concurrency can cause interesting effects in your code if you aren't careful. However, in the case of web workers, the carefully controlled communication points with other threads means that it's actually very hard to cause concurrency problems. There's no access to non-thread safe components or the DOM and you have to pass specific data in and out of a thread through serialized objects. So you have to work really hard to cause problems in your code.

What do you need this for?


Aside from the name, Javascript is totally unrelated to Java. Javascript does not have threads that you can access.


For most things in JavaScript there's one thread, so there's no method for this, since it'd invariable by "1" where you could access such information. There are more threads in the background for events and queuing (handled by the browser), but as far as your code's concerned, there's a main thread.

Java != JavaScript, they only share 4 letters :)


In javascript the scripts run in a browser thread, and your code have no access to that info, actually your code have no idea whatsoever how it's being run. So NO! there's no such thing in javascript.

0

精彩评论

暂无评论...
验证码 换一张
取 消