Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import java.util.function.Consumer;

public class Main {
    public static <T> void runInThread(Consumer<T> consumer, T element) {
        Runnable runnable = () -> consumer.accept(element);

        new Thread(runnable).start();
    }
}