expose job handle/uniqueId

This commit is contained in:
Alex Zylman 2013-12-30 14:14:19 -08:00
parent 98450f63f6
commit 90f2fd21e8
2 changed files with 10 additions and 0 deletions

View File

@ -24,6 +24,14 @@ func (inpack *inPack) Data() []byte {
return inpack.data
}
func (inpack *inPack) Handle() string {
return inpack.handle
}
func (inpack *inPack) UniqueId() string {
return inpack.uniqueId
}
func (inpack *inPack) Err() error {
if inpack.dataType == dtError {
return getError(inpack.data)

View File

@ -6,4 +6,6 @@ type Job interface {
SendWarning(data []byte)
SendData(data []byte)
UpdateStatus(numerator, denominator int)
Handle() string
UniqueId() string
}