def __init__(self, name, shape, dtype, axistags="not none"):
     OutputSlot.__init__(self,name)
     self.meta.shape = shape
     self.meta.dtype = dtype
     self._data = None
     self.meta.axistags = axistags
     self._lock = threading.Lock()