Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9292985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T21:01:09+00:00 2026-06-18T21:01:09+00:00

I’m using a indicator progress set to -1.0 to show some loading while loginprocess

  • 0

I’m using a indicator progress set to -1.0 to show some loading while loginprocess is running.
But when I press the Enter button and start my executor with the loginProcess, my interface stays freezed even if I use Plataform.runLater to set visible my ProgressIndicator.

My button event:

public void initManager(final LoginManager loginManager) {
    btnEntrar.setOnAction(new EventHandler<ActionEvent>() {
        @Override
        public void handle(ActionEvent event) {


            String email = loginTxtField.getText().trim();
            String token = tokenTxtField.getText().trim();

            if (email.equals("")) {
                Platform.runLater(new Runnable() {
                    public void run() {
                        Dialog.showError("Erro", "Digite o e-mail");
                    }
                });
                return;
            }

            try {

                Future future = loginProcess(email, token);

                showLoginLoading(future);

                future.get();

                if (!loginGatewayFailed && !loginTargetAppFailed) {

                    Login loginTargetApp = new Login(email, null, null);
                    loginManager.autheticated(loginTargetApp, loginGateway, gateway, file);

                } else {

                    if (loginTargetAppFailed) {

                        Platform.runLater(new Runnable() {
                            public void run() {
                                Dialog.showError("Erro", loginTargetAppFailedCause);
                            }
                        });

                    } else {

                        if (loginGatewayFailed) {

                            Platform.runLater(new Runnable() {
                                public void run() {
                                    Dialog.showError("Erro", loginGatewayFailedCause);
                                }
                            });
                        }
                    }
                }

            } catch (final Exception ex) {

                Logger.getLogger(LoginController.class.getName()).log(Level.SEVERE, ex.getMessage());

                Platform.runLater(new Runnable() {
                    public void run() {
                        Dialog.showError("Erro", ex.getMessage());
                    }
                });
            }
        }
    });
}

My loginProcess:

public Future<?> loginProcess(String email, String token) throws Exception {

// MY PROCESS

            return Executors.newSingleThreadExecutor().submit(new LoginTask(this, email, token));

        } catch (Exception e) {

            Logger.getLogger(LoginController.class.getName()).log(Level.SEVERE, e.getMessage());

            throw e;
        }
    }

method showLoginLoading:

private void showLoginLoading(Future future) {
        while (!future.isDone()) {

            Platform.runLater(new Runnable() {

                @Override
                public void run() {
                    progressInd.setVisible(true);
                   // progressInd.setProgress(-1.0);
                }
            });

        }
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T21:01:10+00:00Added an answer on June 18, 2026 at 9:01 pm

    The problem was in thread management. I was trying to execute the login instructions in the same thread that the main FX view runs.
    I figured it out using the Platform.isFxApplicationThread(); It returns true if the calling thread is the JavaFX Application Thread.

    To fix my problem i just needed to create a new thread to run all my login instructions as you can see in bellow example:

    public void initManager(final LoginManager loginManager) {
        btnEntrar.setOnAction(new EventHandler<ActionEvent>() {
        boolean mainThread = Platform.isFxApplicationThread();
                System.out.println("This is the main Thread: " + mainThread);
    
                Platform.runLater(new Runnable() {
    
                    @Override
                    public void run() {
                        progressInd.setVisible(true);
                    }
                });
    
                new Thread() {
                    public void run() {
    
                        boolean mainThread = Platform.isFxApplicationThread();
                        System.out.println("This is the main Thread: " + mainThread);
    
                        String email = loginTxtField.getText().trim();
                        String token = tokenTxtField.getText().trim();
    
                        if (email.equals("")) {
                            Platform.runLater(new Runnable() {
                                public void run() {
                                    Dialog.showError("Erro", "Digite o e-mail");
                                }
                            });
                            return;
                        }
    
                        try {
    
                            Future future = loginProcess(email, token);
    
                //            showLoginLoading(future);
    
                            future.get();
    
                            if (!loginGatewayFailed && !loginTargetAppFailed) {
    
                                Login loginTargetApp = new Login(email, null, null);
                                loginManager.autheticated(loginTargetApp, loginGateway, gateway, file);
    
                            } else {
    
                                if (loginTargetAppFailed) {
    
                                    Platform.runLater(new Runnable() {
                                        public void run() {
                                            Dialog.showError("Erro", loginTargetAppFailedCause);
                                        }
                                    });
    
                                } else {
    
                                    if (loginGatewayFailed) {
    
                                        Platform.runLater(new Runnable() {
                                            public void run() {
                                                Dialog.showError("Erro", loginGatewayFailedCause);
                                            }
                                        });
                                    }
                                }
                            }
    
                        } catch (final Exception ex) {
    
                            Logger.getLogger(LoginController.class.getName()).log(Level.SEVERE, ex.getMessage());
    
                            Platform.runLater(new Runnable() {
                                public void run() {
                                    Dialog.showError("Erro", ex.getMessage());
                                }
                            });
                        }
    
    
                    }
                }.start();
               });
            }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a French site that I want to parse, but am running into
I'm using an ASP request returning a XML file containing some latin characters. By
I am using JSon response to parse title,date content and thumbnail images and place
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I am trying to find ID3V2 tags from MP3 file using jid3lib in Java.
I have just tried to save a simple *.rtf file with some websites and
For some reason, after submitting a string like this Jack’s Spindle from a text

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.