7879808182838485868788
for ( InetSocketAddress socket : sockets ) { try { conv = conversationManager.startConversation( "", // TODO add ID later socket, id ); conv.sendMessage( body, handler ); exception = null; } catch ( Exception e ) { exception = e; conv.endConversation();
5051525354555657585960
for ( InetSocketAddress socket : sockets ) { try { conv = conversationManager.startConversation( "", socket, id ); conv.sendMessage( body, handler ); exception = null; } catch ( Exception e ) { exception = e; if ( conv != null ) {
111112113114115116117118119120121
for ( InetSocketAddress socket : sockets ) { try { conv = conversationManager.startConversation( senderId, socket, id ); conv.sendMessage( body, handler ); exception = null; } catch ( Exception e ) { exception = e; if ( conv != null ) {
159160161162163164165166167168169