com.backendless.rt.messaging.ChannelFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Provides access to Backendless API
The newest version!
package com.backendless.rt.messaging;
import com.backendless.rt.AbstractListenerFactory;
public class ChannelFactory extends AbstractListenerFactory
{
private static final ChannelFactory instance = new ChannelFactory();
public static ChannelFactory getInstance()
{
return instance;
}
@Override
public Channel create( final String channel )
{
return new ChannelImpl( channel );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy