deepstream.io-client-java icon indicating copy to clipboard operation
deepstream.io-client-java copied to clipboard

The Java/Android Client for deepstream.io

Results 42 deepstream.io-client-java issues
Sort by recently updated
recently updated
newest added

I'm getting a null pointer when using record.setWithAck() Using the following code snippets: ``` this.client = new DeepstreamClient(dsUrl); Record record = client.record.getRecord(dataPacket.getSchemaKey() + "/" +metaData.getInstanceUrn()); record.setWithAck(gson.toJsonTree(toStore)); ``` The record is...

We use deepstream, and the JS part is fine. The java part is very problematic and might be replaced if problems are not fixed. You can see that [I have...

@PostConstruct public void init() { System.out.println("----------------------"); ScheduledThreadPoolExecutor scheduledThreadPoolExecutor = new ScheduledThreadPoolExecutor(1); scheduledThreadPoolExecutor.execute(new Runnable() { @Override public void run() { try { startUp(); } catch (URISyntaxException e) { e.printStackTrace(); } }...

I am using below code to login to deepstream ``` private static void loginToDeepStream() { try { client = new DeepstreamClient(Const.CONST_CHAT_HOST); client.setRuntimeErrorHandler(new DeepstreamRuntimeErrorHandler() { @Override public void onException(Topic topic, Event...

**While I'm changing connection, my app crashes and shows the following stack trace:** ``` E/AndroidRuntime: FATAL EXCEPTION: Timer-3 Process: com.app.teemchat, PID: 9383 io.deepstream.DeepstreamException: CONNECTION_ERROR: null at io.deepstream.DeepstreamClientAbstract.onError(DeepstreamClientAbstract.java:59) at io.deepstream.Connection$1.run(Connection.java:187) at...

Let say there is deepstream client and JsonElement object jsonObj, then update record with jsonObj. ``` Record record = client.record.getRecord(recordName); record.set(jsonObj); ``` Please refer to following code that copied from...

` @ObjectiveCName("getRecord:") public Record getRecord( String name ) { Record record = null; recordsLock.lock(); try { record = records.get( name ); if( record == null ) { record = createRecord(name);...

Deepstream doesn't allow passing in a Gson object for serialization, or registering type adapters. Currently as a workaround, I serialize the object and then deserialize it back into JsonElement, then...

Source jars doesn't seem to published along with the jars. Looking at http://repo.spring.io/plugins-release/io/deepstream/deepstream.io-client-java/2.2.1/ Kind of strange that it's publised to plugins-release as well. Can you upload source jars as well?