当前位置: 首页>>代码示例>>Java>>正文


Java GuardedBy类代码示例

本文整理汇总了Java中com.subgraph.orchid.misc.GuardedBy的典型用法代码示例。如果您正苦于以下问题:Java GuardedBy类的具体用法?Java GuardedBy怎么用?Java GuardedBy使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


GuardedBy类属于com.subgraph.orchid.misc包,在下文中一共展示了GuardedBy类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: processIncomingCell

import com.subgraph.orchid.misc.GuardedBy; //导入依赖的package包/类
@GuardedBy("lock")
private void processIncomingCell(RelayCell nextCell) throws IOException {
	if(isClosed || nextCell == CLOSE_SENTINEL) {
		throw new IOException("Input stream closed");
	}
	
	switch(nextCell.getRelayCommand()) {
	case RelayCell.RELAY_DATA:
		currentBuffer = nextCell.getPayloadBuffer();
		break;
	case RelayCell.RELAY_END:
		currentBuffer = EMPTY_BUFFER;
		isEOF = true;
		break;
	default:
		throw new IOException("Unexpected RelayCell command type in TorInputStream queue: "+ nextCell.getRelayCommand());
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:19,代码来源:TorInputStream.java

示例2: readFromCurrentBuffer

import com.subgraph.orchid.misc.GuardedBy; //导入依赖的package包/类
@GuardedBy("lock")
private int readFromCurrentBuffer(byte[] b, int off, int len) {
	final int readLength = (currentBuffer.remaining() >= len) ? (len) : (currentBuffer.remaining());
	currentBuffer.get(b, off, readLength);
	availableBytes -= readLength;
	return readLength;
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:8,代码来源:TorInputStream.java

示例3: refillBufferIfNeeded

import com.subgraph.orchid.misc.GuardedBy; //导入依赖的package包/类
@GuardedBy("lock")
// When this method (or fillBuffer()) returns either isEOF is set or currentBuffer has at least one byte to read
private void refillBufferIfNeeded() throws IOException {
	if(!isEOF) {
		if(currentBuffer.hasRemaining()) {
			return;
		}
		fillBuffer();
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:11,代码来源:TorInputStream.java

示例4: fillBuffer

import com.subgraph.orchid.misc.GuardedBy; //导入依赖的package包/类
@GuardedBy("lock")
private void fillBuffer() throws IOException {
	while(true) {
		processIncomingCell(getNextCell());
		if(isEOF || currentBuffer.hasRemaining()) {
			return;
		}
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:10,代码来源:TorInputStream.java

示例5: getNextCell

import com.subgraph.orchid.misc.GuardedBy; //导入依赖的package包/类
@GuardedBy("lock")
private RelayCell getNextCell() throws IOException {
	try {
		while(incomingCells.isEmpty()) {
			lock.wait();
		}
		return incomingCells.remove();
	} catch (InterruptedException e) {
		Thread.currentThread().interrupt();
		throw new IOException("Read interrupted");
	}
}
 
开发者ID:HashEngineering,项目名称:namecoinj,代码行数:13,代码来源:TorInputStream.java


注:本文中的com.subgraph.orchid.misc.GuardedBy类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。