Methods Summary |
---|
public void | dumpScoreboard(java.lang.String file)
// We can only sync with our backing store.
bb.force();
// XXX we should copy the content to the file
|
public void | init()
try {
RandomAccessFile f=new RandomAccessFile( file, "rw" );
FileChannel fc=f.getChannel();
bb=fc.map( FileChannel.MapMode.READ_WRITE, 0, f.length());
} catch( IOException ex ) {
ex.printStackTrace();
}
|
public void | initCli()
|
public int | invoke(org.apache.jk.core.Msg msg, org.apache.jk.core.MsgContext ep)
if (log.isDebugEnabled())
log.debug("ChannelShm14.invoke: " + ep );
//
return 0;
|
public static void | main(java.lang.String[] args)
try {
Shm14 shm=new Shm14();
if( args.length == 0 ||
( "-?".equals(args[0]) ) ) {
shm.setHelp( true );
return;
}
IntrospectionUtils.processArgs( shm, args);
shm.execute();
} catch( Exception ex ) {
ex.printStackTrace();
}
|
public void | resetScoreboard()
// XXX Need to write the head
|