我想知道是否存在一个框架(或任何方式)以异步方式等待java代码中的消息。我重复" 异步方式"。
例如:
int a=5;
MyObject mio= new MyObject();
mio.setx(6);
String message='x|1|5ABC';
MOM.enqueue(message,'myResponseQueue'); // <-- Shoot and forget!!
String res=MOM.dequeue('myResponseQueue'); // instance of class sleep (not in memory) waiting for message.
if (a=mio.getx()){int b=6; } // code awake and continue
a=7;
message='x|2|6ABC';
MOM.enqueue(message,'myResponseQueue'); // <-- Shoot and forget again!!
String res=MOM.dequeue('myResponseQueue'); // instance of class sleep (not in memory) again waiting for message.
if (res!=null){ // <-- code awake again
if (a==5){int b=7;}
}
我知道使用Message-Drive Bean我可以创建一个等待消息的方法,但是如果我有很多消息,我将破坏许多方法中的代码,我将丢失局部变量的值,这使得非常难看的代码。