We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64fdbfb commit 907d1aeCopy full SHA for 907d1ae
src/ipc.rs
@@ -353,6 +353,10 @@ where
353
{
354
/// Create an [IpcSender] connected to a previously defined [IpcOneShotServer].
355
///
356
+ /// This function should not be called more than once per [IpcOneShotServer],
357
+ /// otherwise the behaviour is unpredictable.
358
+ /// See [issue 378](https://github.com/servo/ipc-channel/issues/378) for details.
359
+ ///
360
/// [IpcSender]: struct.IpcSender.html
361
/// [IpcOneShotServer]: struct.IpcOneShotServer.html
362
pub fn connect(name: String) -> Result<IpcSender<T>, io::Error> {
0 commit comments