createByteStore method

ByteStore createByteStore()

This method is invoked once to create the ByteStore that is used for all AnalysisContextCollection instances, and reused when new instances are created (and so can perform analysis faster).

Implementation

ByteStore createByteStore() {
  return MemoryCachingByteStore(
    NullByteStore(),
    1024 * 1024 * 256,
  );
}