mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
This makes it more likely that connections will be closed cleanly. However, the interrupt() method is currently ineffective for incoming sessions as it won't interrupt a blocking read, e.g. when the packet reader is waiting for a packet.
7 lines
148 B
Java
7 lines
148 B
Java
package org.briarproject.api.event;
|
|
|
|
/** An event that is broadcast when the app is shutting down. */
|
|
public class ShutdownEvent extends Event {
|
|
|
|
}
|