public byte[] echo(byte[] message) {
   try {
     if (isPipelined()) {
       pipeline(pipeline.echo(message));
       return null;
     }
     return client.echo(message).data();
   } catch (Exception ex) {
     throw convertSrpAccessException(ex);
   }
 }