568569570571572573574575576577
send( ByteBuffer.wrap( bytes ) ); } private void send( Collection<Framedata> frames ) { if( !isOpen() ) throw new WebsocketNotConnectedException(); for( Framedata f : frames ) { sendFrame( f ); } }