Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. public int send(int id, String message) {
  2. if (message != null) {
  3. for (Connection c : connections) {
  4. if (c != null) {
  5. if (c.getID() == id) {
  6. c.send(message);
  7. return 1; //Success
  8. }
  9. }
  10. }
  11. }
  12. return 0; //Mottagare hittades ej
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement