mirror of
https://github.com/wahyd4/pinpoint.git
synced 2026-08-17 00:36:02 +10:00
git-svn-id: http://svn.bds.nhncorp.com/pe/hippo-tomcat-profiler/trunk@843 84d0f5b1-2673-498c-a247-62c4ff18d310
15 lines
176 B
Java
15 lines
176 B
Java
package com.profiler.sender;
|
|
|
|
import org.apache.thrift.TBase;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public interface DataSender {
|
|
|
|
boolean send(TBase<?, ?> data);
|
|
|
|
void stop();
|
|
|
|
}
|