This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.almabay.filterlistdemo; | |
/** | |
* Created by deepakr on 3/29/2016. | |
*/ | |
public class Bean { | |
String name, age; | |
public Bean(String name, String age) { | |
this.name = name; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
try { | |
mSocket = IO.socket(Constants.CHAT_SERVER_URL); | |
Log.e("Socket", String.valueOf(mSocket)); | |
} catch (URISyntaxException e) { | |
throw new RuntimeException(e); | |
} | |
} |