GraphStream Users

Archives de la liste Aide


Re: Info on terminal: org.graphstream.ui.layout.LayoutRunner run INFO: Layout 'SpringBox' process stopped.


Chronologique Discussions 
  • From: Julian Hapke <ju.hapke AT gmail.com>
  • To: graphstream-users AT litislab.fr, greta.sorritelli AT studenti.unicam.it
  • Subject: Re: Info on terminal: org.graphstream.ui.layout.LayoutRunner run INFO: Layout 'SpringBox' process stopped.
  • Date: Wed, 17 Nov 2021 20:07:54 +0100
  • Ironport-data: A9a23:UZEq2qxy8ddu/lSR2Td6t+ffxCrEfRIJ4+Muj C+fZmUNrF6WrkUOnzMaCDyGO/7eNmL9fdAkPY6//EsEvcOGnIRjGVBrrS00H yNBpOP7XtnIdU2Y0wF+gSHgoOOL1yipAzX5BJhcokT0+1H9bdANkVEmjfvRH +OlV7afUsxMbVYMpBkJ2EoLd9ER2NMAbeiRW2thiPuqyyHtEAbNNw1caAr43 5m+RCZH55wejt+3UmsWPpintHeG/5Uc4Ql2yauZdxMUSaEMdgK2qnqq8V23w o/Z109F5tKNl7/6dggHTueXM1XUzHVRXKemj15JoSlaPqQTbqJNLxcKzW/Rz 5Yskr2htrToIestFq/R3uQUSxpVOy57NKxCvrTAJBBTtOTPkxebLCu2nZ2CC 2lvZdFCkgptOklB7/UAKCsRdB2Kgqer27+hUcFoh9giN83iNsURoBldIZvxG a5zG9acV/yfvZkAyG1l3oYUTKeHc5FMMXwyeEuVSgNrEVIzJJIave6OumPbT Tx9vAvN8PNupzLHpOBq+L3kMd6Qd9DTAMsIxACXoWXJ+2m/CRYfXOFzAAGtq hqE7tIjVwuiMG7KKICFyw==
  • Ironport-hdrordr: A9a23:9oIFqKn7lGjV89vK99TnXRs4nCjpDfIV3D Abv31ZSRFFG/Fw9vre5cjzsCWftN9/YgBEpTntAtjjfZqYz+8X3WBzB9aftW vdyQ+VxehZhOOI/9SjIU3DH4VmpMBdmsZFebvN5JtB4foSIjPULz/t+ra6GW mT69vj8w==
  • Ironport-sdr: fsQxwpGcCZjLbLQCDGM3YjYMqjzSVxP7vXHOTxmFq7ytvCKtJ8jUeegD4y80UUWEIpBvjzE2nX fbSjFOhWJxZsTyGOyq4QlTbVi1DyICP74=

Hi Greta,

that message is emitted by the LayoutRunner that handles the graph layout in a different thread. That thread is stopped when you disable the auto layout. And as the log category says, it's just info, so nothing to worry about.

Julian

<greta.sorritelli AT studenti.unicam.it> schrieb am Mi., 17. Nov. 2021, 11:05:
I use GraphStream in my application and to show graphs I use a FXViewer for
every graph. Initially I want to show the different graphs, without setting
positions of nodes, so I use the enableAutoLayout() method:


 ArrayList<FxViewer> viewers = new ArrayList<>();
 foreach(Graph graph : graphList) {
 FxViewer viewer = new FxViewer(graph,
FxViewer.ThreadingModel.GRAPH_IN_GUI_THREAD);
 viewer.addView(graph.getId(), new FxGraphRenderer());
 viewer.enableAutoLayout();
 viewers.add(viewer);
 }


Next, I want to show the same graphs but with fixed positions setted manually
and so, for every graph, I disable the autoLayout to the related FXViewer.


viewers.forEach(Viewer::disableAutoLayout);


But, for every time I disable the autoLayout to a FXViewer in my console
appears this message:


org.graphstream.ui.layout.LayoutRunner run
INFO: Layout 'SpringBox' process stopped.


Is it a problem? Should I do something or I can just ignore this message?



Archives gérées par MHonArc 2.6.16.

Top of page