For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.
Hello,
Is it posible to have each schema on separate listener so each schema will be accessed from different port?
Please let me know if it is possible.
Thanks!
import javafx.scene.*; import javafx.scene.shape.*; import javafx.scene.paint.*; import javafx.scene.effect.BoxBlur; public class GameGroup extends Group{ GameGroup() { //Group circles = new Group(); for (int i = 0; i < 30; i++) { Circle circle = new Circle(150, Color.web("white", 0.05)); circle.setStrokeType(StrokeType.OUTSIDE); circle.setStroke(Color.web("white", 0.16)); circle.setStrokeWidth(4); // circles.getChildren().add(circle); getChildren().add(circle); } // circles.setEffect(new BoxBlur(10, 10, 3)); setEffect(new BoxBlur(10, 10, 3)); } }