Example #1
0
 @Override
 public StreamSqlResult execute(ExecutionContext c) throws StreamSqlException {
   YarchDatabase dict = YarchDatabase.getInstance(c.getDbName());
   // locking of the dictionary is performed inside the close
   Stream s = dict.getStream(name);
   if (s == null) throw new ResourceNotFoundException(name);
   s.close();
   return new StreamSqlResult();
 }