#mPhone Wireless Headset Unboxing Video :Talk With Out Wires Bluetooth HSP, HFP,A2DP, Multi-connection | Micro USB charging port | Standby: 450 hours | Talk time: 9hours
http://mphone.org/
http://mphone.in/
seen from United States
seen from United States

seen from Germany
seen from Peru
seen from United States

seen from Singapore
seen from Bulgaria
seen from Finland
seen from United States
seen from Australia
seen from Canada
seen from Finland

seen from Germany
seen from United States
seen from Montenegro

seen from Russia

seen from China
seen from Bulgaria

seen from Finland
seen from United States
#mPhone Wireless Headset Unboxing Video :Talk With Out Wires Bluetooth HSP, HFP,A2DP, Multi-connection | Micro USB charging port | Standby: 450 hours | Talk time: 9hours
http://mphone.org/
http://mphone.in/
Speedlink ATHERA: multi-connection bluetooth keyboard
Speedlink has launched a new full-size Bluetooth keyboard named ATHERA that's capable of simultaneously connecting with five devices, regardless of resident operating system. Should you worry that this might lead to accidental texts to your boss or embarrassing updates to social network feeds, fear not. Key combinations initiated by the user determine which device the keyboard is wirelessly communicating with at any one time.
implement java multi connection
main
public static void main(String[] args) {
int port = 5555;
if (args.length >= 1)
port = Integer.parseInt(args[0]);
try {
ServerSocket listener = new ServerSocket(port);
Socket server;
while (true) {
server = listener.accept();
Connection conn_c = new Connection(server, args);
Thread t = new Thread(conn_c);
t.start();
}
} catch (IOException ioe) {
System.out.println("IOException on socket listen: " + ioe);
ioe.printStackTrace();
}
}
implement Runnable
class Connection implements Runnable {
private Socket server;
Connection(Socket server, String[] arg) {
this.server = server;
}
public void run() {
}
}