package com.tudorgirba.jniport.callback;
import jniport.RequestNotHandedException;
import jniport.SmalltalkNotification;
public class SimpleNotifier {
private static final Object �� notifyTag = new String("sendNotification()");
public static Object notifyTag () { return notifyTag; }
public void sendNotification() throws RequestNotHandedException
{
new SmalltalkNotification(notifyTag, this).send();
}
}
Hi Joachim,Thanks for the answer.Unfortunately, I am stuck at the moment too, and I have no idea how to proceed. I would really benefit from your, or someone else's, help :).Cheers,Doru--On Tue, Jul 28, 2015 at 9:57 PM, Joachim Geidel <joachim.geidel@onlinehome.de> wrote:Hi Tudor,unfortunately I haven���t had much time to work on JNIPort for a while. I have started to simplify some of the code, but this isn���t finished yet, and I have not yet looked into Pharo 4 and 5. The latest Pharo version I have worked with was 3, because I was waiting for the VM and NativeBoost changes which were announced but not finished the last time I looked (which is a long time ago). So currently, I can���t tell what is wrong. Obviously, something has changed in the class building mechanism since Pharo 3. The other problem might be related to NativeBoost or the VM, but of course I am speculating for now.Cheers,JoachimAm 28.07.2015 um 16:10 schrieb Tudor Girba-2 [via Smalltalk] <[hidden email]>:Hi Joachim,Thanks for the answer.I did not have Java 1.6 anymore on my Yosemite, but I installed it now. For reference, here is how to get it:I still have problems in Pharo5.I am trying the following script:I tried in Pharo 3, and the script worked fine.I also tried with Pharo4 and Pharo5, but it does not work because I get a MNU for GhostClassBuilder>>#client:.I fixed it in a Pharo5 image by using #installer: instead, but the computation of "JVM newWithSettings: jvmSettings" does not seem to finish and it blocks the VM.Any idea of what goes wrong?Cheers,Tudor
View this message in context: Re: troubles with JNIPort on Pharo 5 / Java 8
Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.