MCPcopy Create free account
hub / github.com/OSGeo/gdal / main

Method main

swig/java/apps/multireadtest.java:36–53  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

34 }
35
36 public static void main(String[] args) throws InterruptedException
37 {
38 String filename = args[0];
39
40 gdal.AllRegister();
41
42 Thread t[] = new Thread[4];
43 for(int i=0;i<4;i++)
44 {
45 t[i] = new Thread(new multireadtest(filename));
46 t[i].start();
47 }
48 for(int i=0;i<4;i++)
49 {
50 t[i].join();
51 }
52 //gdal.GDALDestroyDriverManager();
53 }
54}

Callers

nothing calls this directly

Calls 2

AllRegisterMethod · 0.80
startMethod · 0.80

Tested by

no test coverage detected