I have a basic question for which I need a some clarification in it’s use.
So if I have one class in Java say IOReadWrite.java, where I do some IO read/write. So that it may have an always connected loop something like:
while ((line = stream.readLine()) != null){
//incoming data
}
Now I have another class, call it FrontEnd.java where I am supposed to display the results coming in real time from IOReadWrite.java Class. Normally what is happening is that if I call the method of IO class, I can not get result unless the whole IO Operation is finished and I have to wait.
However what I want is to be able to get those results in real time, so that as soon as there is something on input Stream, I can get it in my FrontEnd Class to do whatever I want to do with it.
One idea I have come up with is using a static String variable in IOReadWrite.java and write a method which simply returns the value of this variable and I can poll this function from main class. But I’m pretty sure this is a very bad approach.
Can you suggest what is the proper way of getting such information in real time?
You can do this
What displayLine does depends on your implementation of that class. Can you give any more details of that the class does with the information?
Something it could do is