Ask a Question related to Ruby, Design and Development.

  1. #1

    Default Sockets and threads

    Probably a dumb question, but here goes:

    If I have a TCPSocket object that is being used by two threads,
    one of which only reads from it while the other only writes to it,
    does access to the object need to be synchronized?

    I know that access to the two directions of a Socket in Java
    are independent for this purpose, but wanted to check to see
    if the same was true in Ruby.

    Thanks!

    -Mark
    Mark J. Reed Guest

  2. Similar Questions and Discussions

    1. how to use xmlSocket with cfc sockets?
      Are there any flash examples out there that can call a function from a cfc socket gateway (thats defined in the CFadmin Gateway Instances using the...
    2. IO::Sockets
      Hi I am trying to use sockets to have a server that takes a message then returns down the socket that it was ok and give back an id. I can get...
    3. Sockets
      Does anyone know how to disconnect a particular socket connection. I can grep out netstat for the connection and use lsof to get a list of pids...
    4. WSE 2.0TP using raw sockets
      I am creating a windows application using C# and WSE 2.0 preview. The application registers a soap receiver and waits for incoming messages on a...
    5. sockets, events, and threads
      Hello - I am coding a client/server app using sockets. I set the server socket descriptor to non-blocking, as well as the clients after accept(). ...
  3. #2

    Default Re: Sockets and threads

    >From: "Mark J. Reed"
    >Probably a dumb question, but here goes:
    >
    >If I have a TCPSocket object that is being used by two threads,
    >one of which only reads from it while the other only writes to it,
    >does access to the object need to be synchronized?
    >
    >I know that access to the two directions of a Socket in Java
    >are independent for this purpose, but wanted to check to see
    >if the same was true in Ruby.
    >
    >Thanks!
    >
    >-Mark
    Its the same, the only thing the 2 streams of a tcp socket really share is a
    number. Theres no underlying dependence.
    loats205 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139