Sep 5, 2000 #1 lenina Programmer Sep 5, 2000 1 US how can i implement callbacks in corba2.3 ? i need a example regading the above thanks in advance
Sep 6, 2000 #2 calahans Programmer Jun 14, 1999 348 IE You can pass a reference to an object from another object ie. Object B has a method call startOrder() which accepts an object of typr Order. Order has a method called transactionComplete(). This should be executed upon some futher work by another component (in this cade object A). Order create instance of A and calls the startOrder method liek this. startOrder(this); //This passes in reference to self to other component. Then the Object A will perform work and call the transactionComplete() complete method on the refernce passed into it. HTH Upvote 0 Downvote
You can pass a reference to an object from another object ie. Object B has a method call startOrder() which accepts an object of typr Order. Order has a method called transactionComplete(). This should be executed upon some futher work by another component (in this cade object A). Order create instance of A and calls the startOrder method liek this. startOrder(this); //This passes in reference to self to other component. Then the Object A will perform work and call the transactionComplete() complete method on the refernce passed into it. HTH