Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MyCallableString (0.08 sec)

  1. guava-tests/test/com/google/common/util/concurrent/CallablesTest.java

        assertSame(value, callable.call());
      }
    
      @J2ktIncompatible
      @GwtIncompatible
      public void testAsAsyncCallable() throws Exception {
        final String expected = "MyCallableString";
        Callable<String> callable =
            new Callable<String>() {
              @Override
              public String call() throws Exception {
                return expected;
              }
            };
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 15:41:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top