motivación¿Puedo invocar XMPPConnection.sendPacket desde hilos concurrentes?
Quiero ojos adicionales para confirmar que estoy en condiciones de llamar a este método XMPPConnection.sendPacket ( de paquetes) simultáneamente. Para mi código actual, estoy invocando una Lista de Callables (máximo 3) de manera serial. Cada Llamado envía/recibe paquetes XMPP en la única pieza de XMPPConnection. Planeo paralelizar estos Callables haciendo girar múltiples hilos & cada uno Llamado invocará sendPacket en la XMPPConnection compartida sin sincronización.
XMPPConnection
class XMPPConnection
{
private boolean connected = false;
public boolean isConnected()
{
return connected;
}
PacketWriter packetWriter;
public void sendPacket(Packet packet)
{
if (!isConnected())
throw new IllegalStateException("Not connected to server.");
if (packet == null)
throw new NullPointerException("Packet is null.");
packetWriter.sendPacket(packet);
}
}
PacketWriter
class PacketWriter
{
public void sendPacket(Packet packet)
{
if (!done) {
// Invoke interceptors for the new packet
// that is about to be sent. Interceptors
// may modify the content of the packet.
processInterceptors(packet);
try {
queue.put(packet);
}
catch (InterruptedException ie) {
ie.printStackTrace();
return;
}
synchronized (queue) {
queue.notifyAll();
}
// Process packet writer listeners. Note that we're
// using the sending thread so it's expected that
// listeners are fast.
processListeners(packet);
}
protected PacketWriter(XMPPConnection connection)
{
this.queue = new ArrayBlockingQueue<Packet>(500, true);
this.connection = connection;
init();
}
}
Lo que llego a la conclusión
Desde el PacketWriter utiliza una BlockingQueue, no hay ningún problema con mi intención de invocar se ndPacket de múltiples hilos. Estoy en lo correcto ?