Advertisement
Guest User

Untitled

a guest
May 25th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Kotlin 0.21 KB | None | 0 0
  1. package com.remek.rosettapos.common.storage
  2.  
  3. /**
  4.  * Marker interface for persistent storage implementations.
  5.  *
  6.  * @param <T> the type of the stored object.
  7.  **/
  8. interface PersistentStorage<T> : Storage<T>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement