In mechanical turk, How to limit a HIT is accept by one worker, after the first one is finished other worker can accept it. The HIT is just accepted by one work per time. It has many assignments during the life time. Specifically, One HIT is finished by worker in sequence: one by one.
Asked
Active
Viewed 149 times
1 Answers
1
There is no built-in functionality to do this. Using the API and your own server, you could configure your own application that accepts Notifications from MTurk, e.g. HITCompleted or AssignmentSubmitted, and then trigger new assignments and/or HITs.

Thomas
- 43,637
- 12
- 109
- 140
-
thanks, it seems a little complicated. Right now, I use the command Line tools with external website. So the command line tools can not manage this? – yongnan Jul 21 '14 at 20:56
-
@yongnan No, you need to design an application that is responsive to incoming requests (probably something setup on a web server). Command-line tools will not achieve that. – Thomas Jul 22 '14 at 09:42