~kirkland/eucalyptus/label-metadata

« back to all changes in this revision

Viewing changes to clc/modules/cluster-manager/src/edu/ucsb/eucalyptus/cloud/cluster/TerminateCallback.java

  • Committer: graziano obertelli
  • Date: 2009-01-07 03:32:35 UTC
  • Revision ID: graziano@cs.ucsb.edu-20090107033235-oxhuexp18v8hg0pw
Tags: 1.4
from CVS

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package edu.ucsb.eucalyptus.cloud.cluster;
 
2
 
 
3
import edu.ucsb.eucalyptus.msgs.*;
 
4
import edu.ucsb.eucalyptus.transport.client.Client;
 
5
import org.apache.log4j.Logger;
 
6
 
 
7
public class TerminateCallback extends QueuedEventCallback<TerminateInstancesType> {
 
8
 
 
9
  private static Logger LOG = Logger.getLogger( TerminateCallback.class );
 
10
 
 
11
  public TerminateCallback() {
 
12
  }
 
13
 
 
14
  public void process( final Client cluster, final TerminateInstancesType msg ) throws Exception {
 
15
    cluster.send( msg );
 
16
  }
 
17
 
 
18
}