You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LambdaA___1.java 342B

123456789101112131415
  1. package com.github.dcevm.test.lambdas;
  2. import java.io.Serializable;
  3. import java.util.concurrent.Callable;
  4. public class LambdaA___1 implements Serializable {
  5. public SerializableCallable<Integer> createLambda() {
  6. return () -> 30;
  7. }
  8. public SerializableCallable<Integer> createLambda2() {
  9. return () -> 40;
  10. }
  11. }