Please Wait

Loading..

Most Popular SDKs in Town

Highly popular SDKs (including coveted IoT based SDK), use of industry standard protocols like MQTT and Web Socket, and cross-platform messaging communication support for all SDKs.

Awesome Features

We offer the most holistic set of features that meet all needs. Our top features are available with all our plans so that you can enjoy true, low-latency real-time messaging experience.



Use Cases

Yalgaar empowers a wide range of real-time messaging applications


chat and Social image

chat and Social iconChat & Social
Networking Sites

What’s the fun of social networking if the conversation is not updated up to the last millisecond. Yalgaar supports real-time activity feeds, live interaction, and commenting. Additionally, we augment your chat applications with our feature-rich as well as flexible real-time chat APIs. These can be used for Android, web, or any other connected device.
Read More...

IoT IconIOT & M2M
Connected Devices

Our infrastructure assists you in securely monitoring, controlling, and streaming data between automatically communicated, Internet-connected devices. The power of our secure global Data Stream Network and our unrivaled support for MQTT make Yalgaar stand out in the market.
Read More...

Promo #2
Promo #3

real time iconReal-time
Tracking

Display live location of moving vehicles and share dynamic geolocation with friends, family, and customers. It can work seamlessly for car-sharing apps, food delivery service, and more. Moreover, Yalgaar can also assist with signalling, monitoring, and real-time communication between connected vehicles.
Read More...

Real-time SDKs, Really Simple to Use

Our robust, real-time SDKs make it simple for developers and digital agencies to make winning apps. Check out our SDKs documentation and tutorials.



Publish


<!-- Publish simple message to YourChannel -->
<script type="text/javascript">
PublishMessage({
    ChannelName: 'YourChannel',
    Message: 'This is Yalgaar Pub/Sub Example',
    Callback: function (acknowledgment) {
    }
});
</script>
                            

Subscribe


<!-- Subscribe to YourChannel -->
<script type="text/javascript">
SubscribeMessage({
    ChannelName: 'YourChannel',
    Callback: function (message, channel, acknowledgement) {
        // Shows alert when message receive
        alert(message + " on channel " + channel);
    }
});
</script>
                            

Publish


//Publish simple message to YourChannel
yalgaar.Publish("YourChannel", "This is Yalgaar Pub/Sub Example");
                            

Subscribe


//Subscribe to YourChannel
yalgaar.Subscribe("YourChannel", SubscribeReturnMessage, SubErrorMessage);
                            
//shows message box when message subscribe public void SubscribeReturnMessage(string Channel, string message) { MessageBox.Show(Message); } //shows message box when Error occur private void SubErrorMessage(string Message) { MessageBox.Show(Message); }

Publish


//Publish simple message to YourChannel
yalgaar.publish("YourChannel", "This is Yalgaar Pub/Sub Example", publishCallback);
                            

Subscribe


//Subscribe to YourChannel
yalgaar.subscribe("YourChannel", subscriptionCallback, null);
                            
//print when message subscribe public void subscriptionCallback(string message) { System.out.println(message); }

Publish


//Publish message to YourChannel
[objYalgaarClient publishWithChannel:@"YourChannel" Message:@"This is Yalgaar Pub/Sub Example" Error:&error];
                            

Subscribe


//Subscribe to YourChannel
[objYalgaarClient subscribeWithChannel:@”YourChannel” Error:&error];
//called when receive data 
(void) dataReceivedForSubscription:(NSString *)data OnChannels:(NSArray *)Channels{
    NSLog(@"Data received: %@", data);
}
                                

More SDKs


For more languages, 
check out Yalgaar SDK & Documentation page
SDK & Documentation
                                                          

Promo #1

Million

MESSAGES PER MONTH

Promo #1

Million

CONNECTED DEVICES PER MONTH

SLA Uptime

GURANTEED

TRY YALGAAR FREE

50 Concurrent Connections & 5000 Messages Per Day