quasar icon indicating copy to clipboard operation
quasar copied to clipboard

Fibers, Channels and Actors for the JVM

Results 101 quasar issues
Sort by recently updated
recently updated
newest added

I have a project that is compiled for JDK8, but that I am trying to run on JDK9. However, the `quasar-core` agent is failing to instrument: ``` [quasar] ERROR: while...

It seems that it has not been updated for years. Any reason?

``` *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at JPLISAgent.c line: 844 *** java.lang.instrument ASSERTION FAILED ***: "!errorOutstanding" with message transform method call failed at...

I have not seen an update in 2 years.

I'm experimenting with one of my projects and got the following NPE: ``` Caused by: org.apache.tools.ant.BuildException at co.paralleluniverse.fibers.instrument.InstrumentationTask.execute (InstrumentationTask.java:183) at org.apache.tools.ant.UnknownElement.execute (UnknownElement.java:292) at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62) at...

We are migrating application to openjdk 14 and Quasar (0.8.0) used. Getting below error. ``` Caused by: java.lang.IllegalArgumentException: Unsupported class file major version 58 at co.paralleluniverse.asm.ClassReader.(ClassReader.java:184) at co.paralleluniverse.asm.ClassReader.(ClassReader.java:166) at co.paralleluniverse.asm.ClassReader.(ClassReader.java:152)...

Now, when I try to start a `Fiber`, I have to use generated code similar to traditional `Thread` `Fiber echo = new Fiber("ECHO", () -> { // lambda }).start();` Can...

help! run failed ![image](https://user-images.githubusercontent.com/42560787/98446261-3af5f100-2157-11eb-94c6-68c3f9d46e3c.png) env:jdk1.8 ,win10 dependency: org.springframework.boot spring-boot-starter 2.2.10.RELEASE co.paralleluniverse quasar-core 0.7.10 co.paralleluniverse quasar-actors 0.7.10 package: ![image](https://user-images.githubusercontent.com/42560787/98446276-5b25b000-2157-11eb-8603-c426316578ed.png)

``` public static Unsafe getUnsafe() { try { return Unsafe.getUnsafe(); } catch (SecurityException se) { try { return java.security.AccessController.doPrivileged(new java.security.PrivilegedExceptionAction() { @Override public Unsafe run() throws Exception { final Class...

When I migrated to Java 11 and quasar 0.8.0 and Vertx core 4.0.0-milestone5. The following errors were encountered. The first is that quasar fails to instrument any class - failing...