use of org.apache.ignite.internal.processors.igfs.IgfsEntryInfo in project ignite by apache.
the class IgfsMetaFileCreateProcessor method process.
/** {@inheritDoc} */
@Override
public IgfsEntryInfo process(MutableEntry<IgniteUuid, IgfsEntryInfo> entry, Object... args) throws EntryProcessorException {
IgfsEntryInfo info = IgfsUtils.createFile(entry.getKey(), blockSize, len, affKey, lockId, evictExclude, props, accessTime, modificationTime);
entry.setValue(info);
return info;
}
Aggregations