void InterprocessConnection::initialiseWithPipe (NamedPipe* const pipe_) { jassert (pipe == nullptr); pipe = pipe_; connectionMadeInt(); startThread(); }
//============================================================================== void InterprocessConnection::initialiseWithSocket (StreamingSocket* const socket_) { jassert (socket == nullptr); socket = socket_; connectionMadeInt(); startThread(); }
void InterprocessConnection::initialiseWithPipe (NamedPipe* newPipe) { jassert (socket == nullptr && pipe == nullptr); pipe = newPipe; connectionMadeInt(); thread->startThread(); }
//============================================================================== void InterprocessConnection::initialiseWithSocket (StreamingSocket* newSocket) { jassert (socket == nullptr && pipe == nullptr); socket = newSocket; connectionMadeInt(); thread->startThread(); }
//============================================================================== bool InterprocessConnection::connectToSocket (const String& hostName, const int portNumber, const int timeOutMillisecs) { disconnect(); const ScopedLock sl (pipeAndSocketLock); socket = new StreamingSocket(); if (socket->connect (hostName, portNumber, timeOutMillisecs)) { connectionMadeInt(); thread->startThread(); return true; } socket = nullptr; return false; }