M Markos Active Member Licensed User Longtime User Apr 3, 2017 #1 Ho Erel I would like to request that a new property be added to the above objects called 'Index' of type Int to help manage multiple instances of the object being initialised. Or is there a way that currently exists which I am unaware. Thanx
Ho Erel I would like to request that a new property be added to the above objects called 'Index' of type Int to help manage multiple instances of the object being initialised. Or is there a way that currently exists which I am unaware. Thanx
DonManfred Expert Licensed User Longtime User Apr 3, 2017 #2 This is the wrong place to post wishes. They should be posted here: https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Additionally this is a comunity forum. DON´T limit your question to a single member! Upvote 0
This is the wrong place to post wishes. They should be posted here: https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Additionally this is a comunity forum. DON´T limit your question to a single member!
M Markos Active Member Licensed User Longtime User Apr 4, 2017 #3 DonManfred said: This is the wrong place to post wishes. They should be posted here: https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Additionally this is a comunity forum. DON´T limit your question to a single member! Click to expand... Hiya Din Agreed but Erel requested I raise this feature request under Questions. I think he has a reasoning which will come in his intended response Upvote 0
DonManfred said: This is the wrong place to post wishes. They should be posted here: https://www.b4x.com/android/forum/forums/bugs-wishlist.30/ Additionally this is a comunity forum. DON´T limit your question to a single member! Click to expand... Hiya Din Agreed but Erel requested I raise this feature request under Questions. I think he has a reasoning which will come in his intended response
Erel B4X founder Staff member Licensed User Longtime User Apr 4, 2017 #4 Markos said: Or is there a way that currently exists which I am unaware. Click to expand... You have two options to manage multiple connections: Good option with classes: MJPEG / CCTV Server Simple and well built. More complicated example: [B4X] FTP Server implemented with Socket and AsyncStreams Not so good option with Map and using the Sender keyword to distinguish between the AsyncStreams: https://www.b4x.com/android/forum/threads/b4j-cctv-example.34695/#post-203347 Adding a Tag property to AsyncStreams is equivalent to using a Map. Upvote 0
Markos said: Or is there a way that currently exists which I am unaware. Click to expand... You have two options to manage multiple connections: Good option with classes: MJPEG / CCTV Server Simple and well built. More complicated example: [B4X] FTP Server implemented with Socket and AsyncStreams Not so good option with Map and using the Sender keyword to distinguish between the AsyncStreams: https://www.b4x.com/android/forum/threads/b4j-cctv-example.34695/#post-203347 Adding a Tag property to AsyncStreams is equivalent to using a Map.