⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 transienttuple.java

📁 这是一个基于java编写的torrent的P2P源码
💻 JAVA
字号:
package com.aelitis.azureus.vivaldi.ver2;

class TransientTuple {
	protected long remove_time;
	protected final IDWrapper id;
	protected SyrahPosition last_pos;
	protected float last_rtt;
	protected long create_time;
  
	public TransientTuple(long _remove_time, IDWrapper _id, SyrahPosition _last_pos, 
    float _last_rtt, long _create_time) {
		remove_time = _remove_time;
		id = _id;
		last_pos = _last_pos;
		last_rtt = _last_rtt;
    create_time = _create_time;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -