Exemple #1
0
 private void Truncate(long position)
 {
     try
     {
         _channel.truncate(position);
     }
     catch (IOException e)
     {
         throw new UnderlyingStorageException("Failed to truncate", e);
     }
 }