summaryrefslogtreecommitdiff
path: root/include/erebos/service.h
blob: 7a6f646b37bca6429b13ef4d56e49dbe7d7309c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#pragma once

#include <erebos/storage.h>

namespace erebos {

class Service
{
public:
	Service();
	virtual ~Service();

	class Context
	{
	public:
		struct Priv;
		Context(Priv *);
		Priv & priv();

		const Ref & ref() const;
		const class Peer & peer() const;

	private:
		std::unique_ptr<Priv> p;
	};

	virtual UUID uuid() const = 0;
	virtual void handle(Context &) const = 0;
};

}