<div dir="ltr">The function &quot;<span style="font-size:13.1999998092651px;line-height:19.7999992370605px">kimchi.</span><span style="font-size:13.1999998092651px;line-height:19.7999992370605px">getPCIDeviceCompanions&quot; (and most other Kimchi JavaScript functions, actually) receives a callback function which receives a result parameter. That function should be executed when the result is ready. In your case, your parameter function doesn&#39;t match this requirement (i.e. you&#39;re passing a function which receives a function which receives a parameter). You need to pass parameters exactly as they&#39;re expected by the main function.</span><div><span style="font-size:13.1999998092651px;line-height:19.7999992370605px"><br></span></div><div>Also, why are you using setTimeout at all?</div></div><br><div class="gmail_quote"><div dir="ltr">On Fri, Jul 10, 2015 at 5:57 PM Ramon Medeiros &lt;<a href="mailto:ramonn@linux.vnet.ibm.com">ramonn@linux.vnet.ibm.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi team,<br>
<br>
i was trying to cache 2 objects, but they came from a HTTP request, and<br>
took some time to download it. I was unable to use the function<br>
setTimeout while calling this function:<br>
<br>
     kimchi.getPCIDeviceCompanions(kimchi.hostPCIs[i].name,<br>
setTimeout(function(result) {<br>
         kimchi.deviceCompanions[kimchi.hostPCIs[i].name] = result;<br>
     },5000));<br>
}<br>
<br>
<br>
The function kimchi.getPCIDeviceCompanions usually takes 2s to finish.<br>
<br>
--<br>
<br>
Ramon Nunes Medeiros<br>
Kimchi Developer<br>
Linux Technology Center Brazil<br>
IBM Systems &amp; Technology Group<br>
Phone : +55 19 2132 7878<br>
<a href="mailto:ramonn@br.ibm.com" target="_blank">ramonn@br.ibm.com</a><br>
<br>
_______________________________________________<br>
Kimchi-devel mailing list<br>
<a href="mailto:Kimchi-devel@ovirt.org" target="_blank">Kimchi-devel@ovirt.org</a><br>
<a href="http://lists.ovirt.org/mailman/listinfo/kimchi-devel" rel="noreferrer" target="_blank">http://lists.ovirt.org/mailman/listinfo/kimchi-devel</a><br>
</blockquote></div>