SignalA.LongPolling Library

SignalR client for Android

Лицензия

Лицензия

Группа

Группа

com.github.erizet.signala
Идентификатор

Идентификатор

signala-longpolling
Последняя версия

Последняя версия

0.20
Дата

Дата

Тип

Тип

aar
Описание

Описание

SignalA.LongPolling Library
SignalR client for Android
Ссылка на сайт

Ссылка на сайт

https://github.com/erizet/signala
Система контроля версий

Система контроля версий

https://github.com/erizet/signala

Скачать signala-longpolling

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.erizet.signala/signala-longpolling/ -->
<dependency>
    <groupId>com.github.erizet.signala</groupId>
    <artifactId>signala-longpolling</artifactId>
    <version>0.20</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.erizet.signala/signala-longpolling/
implementation 'com.github.erizet.signala:signala-longpolling:0.20'
// https://jarcasting.com/artifacts/com.github.erizet.signala/signala-longpolling/
implementation ("com.github.erizet.signala:signala-longpolling:0.20")
'com.github.erizet.signala:signala-longpolling:aar:0.20'
<dependency org="com.github.erizet.signala" name="signala-longpolling" rev="0.20">
  <artifact name="signala-longpolling" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.github.erizet.signala', module='signala-longpolling', version='0.20')
)
libraryDependencies += "com.github.erizet.signala" % "signala-longpolling" % "0.20"
[com.github.erizet.signala/signala-longpolling "0.20"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
com.github.erizet.signala : parallel-basic-http-client jar 0.20
com.github.erizet.signala : signala jar 0.20

Модули Проекта

Данный проект не имеет модулей.

SignalA

Important note

I will no longer update this library.

Updates

2014-02-27 version 0.20

2014-02-14 version 0.16

2014-01-17 version 0.15

2014-01-01 version 0.14

  • Converted project to Android Studio and Gradle.
  • Published SignalA on Maven Central.

2013-08-12 version 0.13

2013-07-31 version 0.12

  • Fixed handling of groupstoken.
  • Removed .metadata folder from repo.
  • Use 'poll' instead of 'reconect' in urls for polling the server.

2013-06-27 version 0.11

Two fixes in this release.

2013-02-20 version 0.10beta released

I've changed a coupe of things in this release.

  • I have changed the transport. LongPolling now uses basic-http-client instead of Aquery for http communication. I've removed all dependencies on Aquery.
  • Hubs is now implemented. Checkout my implementation and say what you think about it. Calling functions on server from client, and calling functions on client from server is supported. NOTE! State is not implemented yet.
  • I've included a new sample, HubDemo, in the repo. It shows how you can implement hubs.
  • I have also set up a SignalR server on Appharbor so HubDemo can talk to it. You'll find it here.

2013-02-20 version 0.9beta released

Version 0.9beta uses the SignalR-protocol version 1.2 which is used in the 1.0 release of SignalR. It has also (beta)support for groups.

Description

SignalA is a SignalR-client for Android. It's implemented as a Android-library. At this moment is long polling the only implemented transport. Long polling is a separate library. Http-requests in the Long polling library is using basic-http-client.

Add SignalA to your project

SignalA is published on Maven Central as a ARR. If you're using Android Studio/Gradle all you have to do is add it on your gradle build:

dependencies {
    compile 'com.github.erizet.signala:signala-longpolling:0.20'
}

How to use?

Add the following code to your activity.

  String url = "http://<address to your SignalR-server>";
  con = new com.zsoft.signala.Connection(url, this, new LongPollingTransport()) {

		@Override
		public void OnError(Exception exception) {
            Toast.makeText(DemoActivity.this, "On error: " + exception.getMessage(), Toast.LENGTH_LONG).show();
		}

		@Override
		public void OnMessage(String message) {
            Toast.makeText(DemoActivity.this, "Message: " + message, Toast.LENGTH_LONG).show();
		}

		@Override
		public void OnStateChanged(StateBase oldState, StateBase newState) {
		}
	};

To start and stop the SignalA connection use code similar to the following.

public void startSignalA()
{
	if(con!=null)
		con.Start();
}

public void stopSignalA()
{
	if(con!=null)
		con.Stop();
}

That's it!

For a complete sample see the Demo-project.

Limitations

Hubs don't support State yet.

Contributions

I'll be more than happy to get contributions!!!

Are you using SignalA?

If you're using SignalA I would appreciate to hear from you - where and how are you using it?

License

Copyright 2013 Erik Zetterqvist

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Disclaimer: I'm a .NET-coder and this is my first attemt to write a Java-library so bare with me.

Версии библиотеки

Версия
0.20
0.16
0.15
0.14