package server
Type Members
-
abstract
class
AbstractAsyncFeedStore
[E, C <: Context] extends AsyncFeedStore[E, C] with FeedStoreSupport[E]
A feed store is responsible for the persistence of feeds.
A feed store is responsible for the persistence of feeds. This abstract class serves as a base class for more specific FeedStore implementations.
- E
type of the elements in the feed
-
abstract
class
AbstractFeedStore
[E, C <: Context] extends FeedStore[E, C] with FeedStoreSupport[E]
A feed store is responsible for the persistence of feeds.
A feed store is responsible for the persistence of feeds. This abstract class serves as a base class for more specific FeedStore implementations.
- E
type of the elements in the feed
-
class
AsyncFeedService
[E, C <: Context] extends AnyRef
A feed service provides the following functionality: - push new entries to the feed - get a page from the feed
A feed service provides the following functionality: - push new entries to the feed - get a page from the feed
- E
the type of the feed entries
- C
the type of the context, which is required for feed stores
-
trait
AsyncFeedStore
[E, C <: Context] extends AnyRef
A feed store is responsible for the persistence of feeds.
A feed store is responsible for the persistence of feeds.
- E
type of the elements in the feed
- trait Context extends AnyRef
-
class
FeedService
[E, C <: Context] extends AnyRef
A feed service provides the following functionality: - push new entries to the feed - get a page from the feed
A feed service provides the following functionality: - push new entries to the feed - get a page from the feed
- E
the type of the feed entries
- C
the type of the context, which is required for feed stores
-
trait
FeedStore
[E, C <: Context] extends AnyRef
A feed store is responsible for the persistence of feeds.
A feed store is responsible for the persistence of feeds.
- E
type of the elements in the feed
- trait FeedStoreSupport [E] extends AnyRef
-
class
MemoryFeedStore
[T, C <: Context] extends AbstractFeedStore[T, C]
An in memory feedstore.
An in memory feedstore. This implementation is very inefficient and should only be used for demo or test purposes
- T
the type for the content of the generated feed