Skip to content

Commit

Permalink
add readme
Browse files Browse the repository at this point in the history
  • Loading branch information
r.v.bobreshov committed Sep 6, 2019
1 parent 36acd09 commit 0dc39bc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Support Databases
| Database | Support |
| ---------- | ----------------------------------------------------------------------- |
| MongoDB | Yes |
| In Memory | Not yet [#5](https://github.com/TinkoffCreditSystems/Horarium/issues/5) |
| In Memory | Yes |
| PostgreSQL | Not yet [#6](https://github.com/TinkoffCreditSystems/Horarium/issues/6) |

## Getting started
Expand Down Expand Up @@ -44,7 +44,7 @@ public class TestJob : IJob<int>
Create ```HorariumServer``` and schedule ```TestJob```

```csharp
var horarium = new HorariumServer(MongoRepositoryFactory.Create("mongodb://localhost:27017/horarium"));
var horarium = new HorariumServer(new InMemoryRepository());
horarium.Start();
await horarium.Create<TestJob, int>(666)
.Schedule();
Expand Down Expand Up @@ -258,3 +258,4 @@ new HorariumSettings
MaxRepeatCount = 1
});
```

0 comments on commit 0dc39bc

Please sign in to comment.