I met a problem in my project.I used tigase to push message to android client,but sometimes we should push more than 1000 users's notices at one time . Using smack api to implement this is too slow .Is anyone has new method to do this ? Can I add a http api to send broadcast message using tigase ?
How to send broadcast message to users using tigase
683 Views Asked by luhaiwork At
1
There are 1 best solutions below
Related Questions in PUSH
- App crash (if closed) after click on notification
- How to trigger git hooks without pushing to the repo
- Push specific commit on the remote branch tracking the current branch
- Push dfferent variants to different remotes
- How do I push an image to my NON-public repo in dockerhub
- Android push notifications not receiving/not sending
- Push remote specific branches with different names
- Sending push notification using Parse SDK on Android
- git fatal error when pushing md file to Github
- Avoid memory leak in subscription for baconjs
- How do I place my entire WordPress installation under git control?
- pushlet vs long polling as a push technology
- IOS Missing Push notification entitlement
- can't push huge git commit
- Git push to TFS stop on 100 percent
Related Questions in MESSAGE
- Scrollbar for Message Widget in Tkinter
- How to process A direct send message to a thread of process B?
- Cluster PHP messages array
- erlang processes and message passing architecture
- FluentValidation - How to customize the validation message in runtime
- Storing all conversations in a table
- How to write CHARACTER variable to file in ESQL?
- Laravel5 illuminate composer messagebag package
- Random quote page reload javascript
- Chrome-extension undefined response from background to popup
- Primefaces duplicate messages in dialog and page
- Sending messages with AppleScript
- How would I send an alert or message to a view from a Django model's (overridden) save( ) function?
- CakePHP 2.x Sending user messages to element('menu')
- Facebook automatic Birthday wish
Related Questions in BROADCAST
- Broadcast intent vs multicast listener implementation on Android
- Android RAM usage error with broadcast receiver in service
- What is the proper syntax of using broadcast variables in Spark using Scala?
- Subnetting Difficulty
- Udp broadcast packets is not receive in android
- android.intent.action.BATTERY_OKAY is not working in broadcast receiver, what to do in broadcast receiver?
- How to send in broadcast a sms to all device in a certain network?
- How to broadcast hard key events as system broadcast in android?
- Send UDP broadcast with use of glib
- angular broadcast from directive
- Receive UDP broadcast packets across subnetworks the way wireshark can do it
- Spark: passing broadcast variable to executors
- Broadcasting in spark streaming
- Send data to Node.js Clients
- Pass the greater of two entered numbers from one app and have a receiver broadcast it in another
Related Questions in TIGASE
- asmack-android-8-4.0.6.jar issue for XMPP connection
- Pubsub in Asterisk using Tigase and res_xmpp
- How to send broadcast message to users using tigase
- Can't connect to Tigase with JMX from JBOSS 7.x
- Tigase Server have installed on VM but its not starting... what i do?
- java Tigase Perforamnce
- SMS gateway integration with Tigase
- XMPP Server, smack API connectivity
- Create an external component to a Openfire
- how to build Tigase Android messenger
- Sending Custom Message to Client in Tigase
- How to get offline message from Tigase pubsub in smack library in android
- How to get the list of rooms under an application?
- mvn build is failing for tigase-web-ui-2.0 final
- error while creating room in muc using xmpp
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
There is REST API available in Tigase but why do you think it would be faster than using XMPP? This actually depends on how you do this. Using admin ad-hoc commands (either via standard XMPP or REST API) you can submit 1000 or more notices with a single call. Assuming you have a list of all recipients beforehand. You can also send a message to all online users with a single admin ad-hoc command.
Or maybe what you do is actually a job for a PubSub component?