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
684 views Asked by luhaiwork At
1
There are 1 answers
Related Questions in PUSH
- How to combine JSON objects and unnest array of arrays
- Almost empty git repo has huge size
- How to add the outout the random element from array and keep adding 1 by 1 in empty array?
- Unable to push changes via git behind Proxy with Heroku
- How to enable a PR originating from a forked repo to cause a GitHub workflow to push to a branch (gh-pages) in the original repo?
- Asset validation error on App Store upload
- Copy project files in path and projects in child subgroups
- Extra files included in push e.g. settings.py
- How to fix this issue with git push?
- Can images be blocked from being pushed to Harbor based on the number of artifacts for that image?
- How do I push a file into its subfolder in git repository?
- iOS - React-Native - Click on Push does not render the App
- Created a stack and the push() method is not working
- issue on pushing refs on Git repository
- Eclipse IDE can't Commit & Push to GitHub
Related Questions in MESSAGE
- Slack webhook returns invalid_payload when message is a url
- How properly and efficient load chats and messages in those chats?
- I am getting this error using Eclipse : An error has occurred. See error log for more details. org/eclipse/egit/core/AdapterUtils
- Whatsapp shared id
- How to send message to recipients individually?
- Delete the number (limit) of records older than 180 days from ESQL (ACE flow)
- What's git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags --set-upstream origin master:master
- How to send messages inside the whatsapp with flutter app, no open whatsApp
- Can i use ws.onmessage in node.js server?
- Telethon, how to get messages from chat, but not don't make requests to get user entites
- MFMessageComposeViewController UI issue for big amount of recipients
- How to change the url of a template when i am sending a whatsapp message?
- Say a message for longer on alexa developer with python
- I want to set a popup message when I close any file in windows, how is it possible?
- Whatsapp messages sender works properly but not with images
Related Questions in BROADCAST
- What is the correct way to setup and use the Ethernet library in Arduino in order to send and receive UDP broadcast messages between LAN devices?
- Agora Broadcast live streaming black screen on ios browsers when starting a stream agora-rtc-sdk-ng react web app
- In SampleHandler class for BroadcastUploadExtension, my broadcastFinished method not calling but broadcastStarted is calling, someone help me
- Spark has thrown error and removed all broadcast pieces, but still reported broadcast timeout
- Live video using Youtube Live Streaming Api [Python]
- Receiving UDP broadcast on Android
- broadcast 2d to 3d with non matching columns
- How do I receive UDP broadcast packets using GTK / GIO?
- Why am I encountering an error with comm.Bcast() function in mpi4py when broadcasting a numpy array?
- laravel broadcast.php pusher option not working
- Open app without Launcher icon with package Manager and Broadcast
- Tensor power of 1D numpy array
- Is it possible way for allow RTSP protocol in broadcasting?
- How can I broadcast the live location of an airtag on a web site?
- UDP broadcast on localhost
Related Questions in TIGASE
- Cannot register user on XMPP server
- How to change Xmpp Ip addess to domain name
- Unable to do clustering in Tigase Server on CentOS6.10 64 Bit
- Failed inbound s2s EXTERNAL authentication: certificate not trusted
- Can XMPP roster contacts have no IM or presence but have a vCard?
- Tigase Custom Database
- Tigase external component as a single jar
- I am going to write file (logs) on server in deferent languages. english_name.txt is ok, "عاتبوها.txt" is showing "?????.txt" on server
- Tigase Server have installed on VM but its not starting... what i do?
- Cannot connect to Tigase Admin panel?
- How to get offline message from Tigase pubsub in smack library in android
- What is the "type" attribute in XMPP disco#info result
- MUC room is locked with default installation of tigase
- error while creating room in muc using xmpp
- Multi User Chat XMPP
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?
Popular Tags
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)
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?