Package com.foundationdb.server.service.monitor

Examples of com.foundationdb.server.service.monitor.CursorMonitor


                    if (!sessions.hasNext()) {
                        return null;
                    }
                    statements = sessions.next().getCursors().iterator();
                }
                CursorMonitor cursor = statements.next();
                ValuesRow row = new ValuesRow(rowType,
                                              (long)cursor.getSessionId(),
                                              cursor.getName(),
                                              cursor.getSQL(),
                                              cursor.getPreparedStatementName(),
                                              cursor.getCreationTimeMillis()/1000,
                                              (long)cursor.getRowCount(),
                                              ++rowCounter);
                return row;
            }
View Full Code Here

TOP

Related Classes of com.foundationdb.server.service.monitor.CursorMonitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.