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

📄 dimcurrentinfo.java

📁 这是一个分布式通信程序框架源程序
💻 JAVA
字号:
package dim;

public class DimCurrentInfo extends DimInfo
{		
	public DimCurrentInfo(String theServiceName, String noLink)
	{
		super(theServiceName,noLink);
	}
	public DimCurrentInfo(String theServiceName, int noLink)
	{
		super(theServiceName,noLink);
	}
	public DimCurrentInfo(String theServiceName, float noLink)
	{
		super(theServiceName,noLink);
	}
	public DimCurrentInfo(String theServiceName, double noLink)
	{
		super(theServiceName,noLink);
	}
	public DimCurrentInfo(String theServiceName, int time, String noLink)
	{
		super(theServiceName,time,noLink);
	}
	public DimCurrentInfo(String theServiceName, int time, int noLink)
	{
		super(theServiceName,time,noLink);
	}
	public DimCurrentInfo(String theServiceName, int time, float noLink)
	{
		super(theServiceName,time,noLink);
	}
	public DimCurrentInfo(String theServiceName, int time, double noLink)
	{
		super(theServiceName,time,noLink);
	}
	
	void subscribe(String theServiceName, int time)
	{
		do_subscribe();
		service_id = Client.infoService(theServiceName, 
										this, 
										Client.ONCE_ONLY|Client.F_WAIT|Client.F_STAMPED,
										time);
	}
	
}

⌨️ 快捷键说明

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