类org.apache.hadoop.fs.CanSetReadahead源码实例Demo

下面列出了怎么用org.apache.hadoop.fs.CanSetReadahead的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: hadoop   文件: CryptoInputStream.java

@Override
public void setReadahead(Long readahead) throws IOException,
    UnsupportedOperationException {
  try {
    ((CanSetReadahead) in).setReadahead(readahead);
  } catch (ClassCastException e) {
    throw new UnsupportedOperationException("This stream does not support " +
        "setting the readahead caching strategy.");
  }
}
 
源代码2 项目: big-c   文件: CryptoInputStream.java

@Override
public void setReadahead(Long readahead) throws IOException,
    UnsupportedOperationException {
  try {
    ((CanSetReadahead) in).setReadahead(readahead);
  } catch (ClassCastException e) {
    throw new UnsupportedOperationException("This stream does not support " +
        "setting the readahead caching strategy.");
  }
}
 
 类所在包
 类方法
 同包方法