Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f033b7e3ead14738845b211d30a7c26f667b769c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.eclipse.emf.cdo.example.server;


import org.eclipse.core.runtime.IPlatformRunnable;


public class CdoTestServerApplication implements IPlatformRunnable
{
  public CdoTestServerApplication()
  {
  }

  public Object run(Object args) throws Exception
  {
    for (;;)
    {
      // Graceful shutdown?
    }
  }
}

Back to the top