mirror of
https://github.com/ParkerTenBroeck/coroutines.git
synced 2026-06-06 21:00:35 -04:00
moved to coroutines package
This commit is contained in:
parent
1c0430cfac
commit
3c59263a55
37 changed files with 85 additions and 88 deletions
|
|
@ -1,7 +1,4 @@
|
|||
package basic;
|
||||
|
||||
import com.parkertenbroeck.future.Future;
|
||||
import com.parkertenbroeck.future.Waker;
|
||||
|
||||
public class Futures {
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package basic;
|
||||
|
||||
import com.parkertenbroeck.generator.Gen;
|
||||
import com.parkertenbroeck.coroutines.generator.Gen;
|
||||
|
||||
public class Gens {
|
||||
public static Gen<Long, Void> primes(){
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package basic;
|
||||
|
||||
import com.parkertenbroeck.bcsm.RT;
|
||||
import com.parkertenbroeck.bcsm.loadtime.CoroutineClassLoader;
|
||||
import com.parkertenbroeck.generator.Gen;
|
||||
import com.parkertenbroeck.coroutines.bcsm.RT;
|
||||
import com.parkertenbroeck.coroutines.bcsm.loadtime.CoroutineClassLoader;
|
||||
import com.parkertenbroeck.coroutines.generator.Gen;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
package lexer;
|
||||
|
||||
import com.parkertenbroeck.generator.Gen;
|
||||
import com.parkertenbroeck.coroutines.generator.Gen;
|
||||
|
||||
public class Lexer {
|
||||
public sealed interface Token{}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package lexer;
|
||||
|
||||
import com.parkertenbroeck.generator.Gen;
|
||||
import com.parkertenbroeck.bcsm.RT;
|
||||
import com.parkertenbroeck.bcsm.loadtime.CoroutineClassLoader;
|
||||
import com.parkertenbroeck.coroutines.generator.Gen;
|
||||
import com.parkertenbroeck.coroutines.bcsm.RT;
|
||||
import com.parkertenbroeck.coroutines.bcsm.loadtime.CoroutineClassLoader;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
package sockets;
|
||||
|
||||
import com.parkertenbroeck.async_runtime.Jokio;
|
||||
import com.parkertenbroeck.bcsm.RT;
|
||||
import com.parkertenbroeck.bcsm.loadtime.CoroutineClassLoader;
|
||||
import com.parkertenbroeck.coroutines.async_runtime.Jokio;
|
||||
import com.parkertenbroeck.coroutines.bcsm.RT;
|
||||
import com.parkertenbroeck.coroutines.bcsm.loadtime.CoroutineClassLoader;
|
||||
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
|
|
|
|||
|
|
@ -1,12 +1,11 @@
|
|||
package sockets;
|
||||
|
||||
import com.parkertenbroeck.async_runtime.Delay;
|
||||
import com.parkertenbroeck.async_runtime.Jokio;
|
||||
import com.parkertenbroeck.async_runtime.io.net.ServerSocket;
|
||||
import com.parkertenbroeck.async_runtime.io.net.Socket;
|
||||
import com.parkertenbroeck.future.Future;
|
||||
import com.parkertenbroeck.bcsm.loadtime.future.Cancellation;
|
||||
import com.parkertenbroeck.future.Waker;
|
||||
import com.parkertenbroeck.coroutines.async_runtime.Delay;
|
||||
import com.parkertenbroeck.coroutines.async_runtime.Jokio;
|
||||
import com.parkertenbroeck.coroutines.async_runtime.io.net.ServerSocket;
|
||||
import com.parkertenbroeck.coroutines.async_runtime.io.net.Socket;
|
||||
import com.parkertenbroeck.coroutines.future.Future;
|
||||
import com.parkertenbroeck.coroutines.bcsm.loadtime.future.Cancellation;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.InetSocketAddress;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue