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

📄 message6.java

📁 source code about voyager examples of message
💻 JAVA
字号:
// (c) Copyright 1997-2001 Recursion Software Inc.



package examples.message;

import com.recursionsw.ve.*;
import com.recursionsw.ve.message.*;

public class Message6
  {
  public static void main( String args[] )
    {
    try
      {
      Voyager.startup();
      IAlarm alarm = (IAlarm) Factory.create( "examples.message.Alarm", "8000" );
      System.out.println( "send delay( 5000 )" );
      // invoke method with 3 second timeout
      Result result = Future.invoke( alarm, "delay", new Object[] { new Integer( 5000 ) }, false, 3000, null );
      int value = result.readInt();
      System.out.println( "value = " + value );
      }
    catch( Exception exception )
      {
      System.err.println( exception );
      }

    Voyager.shutdown();
    }
  }

⌨️ 快捷键说明

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