com.backendless.messaging.AndroidHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
Android SDK used by developers to provide Backendless API in apps.
/*
* ********************************************************************************************************************
*
* BACKENDLESS.COM CONFIDENTIAL
*
* ********************************************************************************************************************
*
* Copyright 2012 BACKENDLESS.COM. All Rights Reserved.
*
* NOTICE: All information contained herein is, and remains the property of Backendless.com and its suppliers,
* if any. The intellectual and technical concepts contained herein are proprietary to Backendless.com and its
* suppliers and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret
* or copyright law. Dissemination of this information or reproduction of this material is strictly forbidden
* unless prior written permission is obtained from Backendless.com.
*
* ********************************************************************************************************************
*/
package com.backendless.messaging;
import android.os.Handler;
import android.util.Log;
import com.backendless.Backendless;
import com.backendless.Subscription;
import com.backendless.async.callback.AsyncCallback;
import com.backendless.exceptions.BackendlessException;
import com.backendless.exceptions.BackendlessFault;
import java.util.List;
public class AndroidHandler implements IMessageHandler
{
private Handler handler;
private Runnable subscriptionThread;
public AndroidHandler( final AsyncCallback> subscriptionResponder, final Subscription subscription )
{
handler = new Handler( new Handler.Callback()
{
@Override
@SuppressWarnings( "unchecked" )
public boolean handleMessage( android.os.Message message )
{
if( subscriptionResponder != null )
if( message.obj instanceof BackendlessException )
subscriptionResponder.handleFault( new BackendlessFault( (BackendlessException) message.obj ) );
else
subscriptionResponder.handleResponse( (List) message.obj );
return true;
}
} );
subscriptionThread = new Runnable()
{
@Override
public void run()
{
try
{
List messages = Backendless.Messaging.pollMessages( subscription.getChannelName(), subscription.getSubscriptionId() );
if( !messages.isEmpty() )
{
android.os.Message message = android.os.Message.obtain();
message.obj = messages;
handler.sendMessage( message );
}
}
catch( BackendlessException e )
{
android.os.Message message = android.os.Message.obtain();
message.obj = e;
handler.sendMessage( message );
}
}
};
}
@Override
public Runnable getSubscriptionThread()
{
return subscriptionThread;
}
}