mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-02-02 03:20:06 +00:00
Improved the idling of socket InterprocessConnections
This commit is contained in:
parent
2e9bd44006
commit
fe7f34f0fa
2 changed files with 2 additions and 2 deletions
|
|
@ -325,7 +325,7 @@ void InterprocessConnection::runThread()
|
|||
{
|
||||
if (socket != nullptr)
|
||||
{
|
||||
auto ready = socket->waitUntilReady (true, 0);
|
||||
auto ready = socket->waitUntilReady (true, 100);
|
||||
|
||||
if (ready < 0)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ public:
|
|||
//==============================================================================
|
||||
/** Starts an internal thread which listens on the given port number.
|
||||
|
||||
While this is running, in another process tries to connect with the
|
||||
While this is running, if another process tries to connect with the
|
||||
InterprocessConnection::connectToSocket() method, this object will call
|
||||
createConnectionObject() to create a connection to that client.
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue