Package com.linkedin.parseq.internal

Source Code of com.linkedin.parseq.internal.SystemHiddenTask

package com.linkedin.parseq.internal;

import com.linkedin.parseq.BaseTask;
import com.linkedin.parseq.trace.ShallowTrace;
import com.linkedin.parseq.trace.ShallowTraceBuilder;

public abstract class SystemHiddenTask<T> extends BaseTask<T>
{
  protected SystemHiddenTask(String name)
  {
    super(name);
  }

  @Override
  public ShallowTrace getShallowTrace()
  {
    return new ShallowTraceBuilder(super.getShallowTrace())
        .setSystemHidden(true)
        .build();
  }
}
TOP

Related Classes of com.linkedin.parseq.internal.SystemHiddenTask

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.