GET /test.pl HTTP/1.1\x0D\x0AHOST: 192.168.2.5\x0D\x0A\x0D\x0A
Which returns text in the format of (actual data is approximately 1000
lines)
STARTDATA
XBMCARTIST###10###(HED) Planet Earth###ENDRECORD
XBMCARTIST###18###.38 Special###ENDRECORD
XBMCARTIST###16###10,000 Maniacs###ENDRECORD
ENDDATA
My first feedback regex is
(?ims)(STARTDATA)
OnMatch - which assigns the value of 0x to the join the above data
will be put into (clears the list correct?)
OnMatch - which sets the join to 1 for a loading graphic
My next feedback regex (on the same system) is
(?ims)XBMCARTIST###(.*?)###(.*?)###ENDRECORD
OnMatch - assign value of c to list
Groups - assign values to the content subpage
My final feedback regex (on the same system) is
(?ims)(ENDDATA)
OnMatch - set join to 0 for loading graphic
OnMatch - set join to 1 for subpage containing list
So that's the setup.
When I first launch iViewer and hit the button that sends out the GET
request, it takes less than three seconds for the data to be loaded,
put into the list and for the list to appear.
However, any subsequent time I hit the button, it takes upwards of 60
seconds to load the data, put it on the list and for the list to
appear. During this time the GUI is unresponsive.
--
You received this message because you are subscribed to the Google Groups "CommandFusion" group.
To post to this group, send email to commandfusion@googlegroups.com.
To unsubscribe from this group, send email to commandfusion+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/commandfusion?hl=en.
Comments
0 comments to "Lists - loading time after emptying out a list"
Post a Comment