Opending
função é usada para obter o número de tópicos concorrentes em execução no programa de estratégia atual.
Opending()
função retorna o número de tópicos simultâneos que o programa de estratégia atual está executando.
Número
pendente
function threadFun1() {
Log("threadFun1")
Sleep(3000)
}
function threadFun2() {
for (var i = 0; i < 3; i++) {
LogStatus(_D(), "print from threadFun2")
Sleep(3000)
}
}
function main() {
Log(`begin -- threading.pending():`, threading.pending())
var t1 = threading.Thread(threadFun1)
var t2 = threading.Thread(threadFun2)
Log(`after threading.Thread -- threading.pending():`, threading.pending())
t1.join()
t2.join()
Log(`after thread.join -- threading.pending():`, threading.pending())
}
Crie dois tópicos em execução simultânea e chame opending()
função em diferentes pontos de tempo.
Quando a estratégiamain()
função começa a executar, chamando a funçãopending()
diretamente irá retornar 1, porque o fio principal onde a estratégiamain()
função está localizado é também um fio pendente.
Suporta sistema de backtesting e ambiente de negociação ao vivo.
{@fun/Threads/threading/getThread getThread}, {@fun/Threads/threading/mainThread mainThread}, {@fun/Threads/threading/currentThread currentThread}, {@fun/Threads/threading/Lock Lock}, {@fun/Threads/threading/Condition Condition}, {@fun/Threads/threading/Event Event}, {@fun/Threads/threading/Dict Dict}, {@fun/Threads/threading/Thread Thread}, {@fun/Threads/threading/eventLoop}
Dicionário Fios