How to deal with buffer.isPerformingIO() ?
Submitted by Friday, 7 May, 2004 - 16:13
on
Hi I try to load file and perfomes some transformation on it then save on a loop of file.
But I am having a error on I/O perming so I try to wait for the
buffer to do it's job but then I only manage to have a Message instead of a error
Thread.sleep block Jedit an empty loop too.
this is the only working code but I like it to be without Message.
while(buffer.isPerformingIO()){
//this.wait(2);
//Thread.sleep(10);
Macros.message(view, nBFichier+" buffer.isPerformingIO()" );
}
But I am having a error on I/O perming so I try to wait for the
buffer to do it's job but then I only manage to have a Message instead of a error
Thread.sleep block Jedit an empty loop too.
this is the only working code but I like it to be without Message.
while(buffer.isPerformingIO()){
//this.wait(2);
//Thread.sleep(10);
Macros.message(view, nBFichier+" buffer.isPerformingIO()" );
}