* [Bluez-devel] Asynchronous call
@ 2006-11-13 10:34 Yuriy Vikulov
2006-11-13 12:29 ` Peter Wippich
2006-11-13 12:42 ` Pierre-Yves Paulus
0 siblings, 2 replies; 6+ messages in thread
From: Yuriy Vikulov @ 2006-11-13 10:34 UTC (permalink / raw)
To: bluez-devel
Hello
Is there opportunity of asynchronous call of inquiry
(if one device is found, i will get info about it and will not waiting while
other devices will be found)
Regards,
Yuriy
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Bluez-devel] Asynchronous call
2006-11-13 10:34 [Bluez-devel] Asynchronous call Yuriy Vikulov
@ 2006-11-13 12:29 ` Peter Wippich
2006-11-13 12:30 ` Yuriy Vikulov
2006-11-13 12:42 ` Pierre-Yves Paulus
1 sibling, 1 reply; 6+ messages in thread
From: Peter Wippich @ 2006-11-13 12:29 UTC (permalink / raw)
To: BlueZ development
Hello Yuriy,
On Mon, 13 Nov 2006, Yuriy Vikulov wrote:
> Hello
>
> Is there opportunity of asynchronous call of inquiry
> (if one device is found, i will get info about it and will not waiting while
> other devices will be found)
>
None I'm aware of. You have to implement it on your own using hci sockets.
Regards,
Peter
| Peter Wippich Voice: +49 30 46776411 |
| G&W Instruments GmbH fax: +49 30 46776419 |
| Gustav-Meyer-Allee 25, Geb. 12 Email: pewi@gw-instruments.de |
| D-13355 Berlin / Germany |
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Bluez-devel] Asynchronous call
2006-11-13 12:29 ` Peter Wippich
@ 2006-11-13 12:30 ` Yuriy Vikulov
0 siblings, 0 replies; 6+ messages in thread
From: Yuriy Vikulov @ 2006-11-13 12:30 UTC (permalink / raw)
To: bluez-devel
Hello, Peter
Thanks for answer!
Regards,
Yuriy
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Bluez-devel] Asynchronous call
2006-11-13 10:34 [Bluez-devel] Asynchronous call Yuriy Vikulov
2006-11-13 12:29 ` Peter Wippich
@ 2006-11-13 12:42 ` Pierre-Yves Paulus
2006-11-13 13:08 ` Pierre-Yves Paulus
1 sibling, 1 reply; 6+ messages in thread
From: Pierre-Yves Paulus @ 2006-11-13 12:42 UTC (permalink / raw)
To: BlueZ development
Hello,
> Is there opportunity of asynchronous call of inquiry
> (if one device is found, i will get info about it and will not waiting while
> other devices will be found)
It seems that the D-Bus API works that way.
Best Regards.
Pierre-Yves
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Bluez-devel] Asynchronous call
2006-11-13 12:42 ` Pierre-Yves Paulus
@ 2006-11-13 13:08 ` Pierre-Yves Paulus
2006-11-13 13:17 ` Yuriy Vikulov
0 siblings, 1 reply; 6+ messages in thread
From: Pierre-Yves Paulus @ 2006-11-13 13:08 UTC (permalink / raw)
To: BlueZ development
Hello again,
> > Is there opportunity of asynchronous call of inquiry
> > (if one device is found, i will get info about it and will not waiting while
> > other devices will be found)
>
> It seems that the D-Bus API works that way.
To be more clear, the D-Bus API works asynchronously, eg the call to
start inquiry is non-blocking. I didn't intend to tell that it was
possible to block until first device is discovered, and then return.
Hope it makes more sense now.
Pierre-Yves
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Bluez-devel] Asynchronous call
2006-11-13 13:08 ` Pierre-Yves Paulus
@ 2006-11-13 13:17 ` Yuriy Vikulov
0 siblings, 0 replies; 6+ messages in thread
From: Yuriy Vikulov @ 2006-11-13 13:17 UTC (permalink / raw)
To: bluez-devel
Hello
Thanks a lot!
Regards,
Yuriy
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2006-11-13 13:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-11-13 10:34 [Bluez-devel] Asynchronous call Yuriy Vikulov
2006-11-13 12:29 ` Peter Wippich
2006-11-13 12:30 ` Yuriy Vikulov
2006-11-13 12:42 ` Pierre-Yves Paulus
2006-11-13 13:08 ` Pierre-Yves Paulus
2006-11-13 13:17 ` Yuriy Vikulov
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.