File: ConnPool.java

package info (click to toggle)
mapserver 6.4.1-5%2Bdeb8u3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 12,960 kB
  • ctags: 19,791
  • sloc: ansic: 119,501; cpp: 54,044; python: 3,055; xml: 1,676; cs: 875; lex: 741; yacc: 707; java: 588; perl: 428; makefile: 382; sh: 373; tcl: 158; ruby: 55
file content (19 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import edu.umn.gis.mapscript.*;

/**
 * <p>Title: Mapscript conn pool</p>
 * <p>Description: n.a. </p>
 * @author Umberto Nicoletti (umberto.nicoletti@gmail.com)
 * @version 1.0
 */

public class ConnPool {

  public static void main(String[] args) {
    // at least it shouldn't crash
    System.out.println("Running mapscript.msConnPoolCloseUnreferenced");
    mapscript.msConnPoolCloseUnreferenced();
    System.out.println("Finished.");
  }

}