-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#12 provide some info about pool on startup
- Loading branch information
Showing
8 changed files
with
427 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
src/main/java/burstcoin/jminer/core/network/event/NetworkPoolInfoEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016 by luxe - https://github.com/de-luxe - BURST-LUXE-RED2-G6JW-H4HG5 | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software | ||
* and associated documentation files (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, publish, distribute, | ||
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software | ||
* is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies | ||
* or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
*/ | ||
|
||
package burstcoin.jminer.core.network.event; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
|
||
public class NetworkPoolInfoEvent | ||
extends ApplicationEvent | ||
{ | ||
private String poolAccountRS; | ||
private String poolBalanceNQT; | ||
private String poolForgedBalanceNQT; | ||
private int poolNumberOfMiningAccounts; // todo find active | ||
|
||
public NetworkPoolInfoEvent(String poolAccountRS, String poolBalanceNQT, String poolForgedBalanceNQT, int poolNumberOfMiningAccounts) | ||
{ | ||
super(poolAccountRS); | ||
|
||
this.poolAccountRS = poolAccountRS; | ||
this.poolBalanceNQT = poolBalanceNQT; | ||
this.poolForgedBalanceNQT = poolForgedBalanceNQT; | ||
this.poolNumberOfMiningAccounts = poolNumberOfMiningAccounts; | ||
} | ||
|
||
public String getPoolAccountRS() | ||
{ | ||
return poolAccountRS; | ||
} | ||
|
||
public String getPoolBalanceNQT() | ||
{ | ||
return poolBalanceNQT; | ||
} | ||
|
||
public String getPoolForgedBalanceNQT() | ||
{ | ||
return poolForgedBalanceNQT; | ||
} | ||
|
||
public int getPoolNumberOfMiningAccounts() | ||
{ | ||
return poolNumberOfMiningAccounts; | ||
} | ||
} |
58 changes: 58 additions & 0 deletions
58
src/main/java/burstcoin/jminer/core/network/model/Account.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016 by luxe - https://github.com/de-luxe - BURST-LUXE-RED2-G6JW-H4HG5 | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software | ||
* and associated documentation files (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, publish, distribute, | ||
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software | ||
* is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies | ||
* or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
*/ | ||
|
||
package burstcoin.jminer.core.network.model; | ||
|
||
import com.fasterxml.jackson.annotation.JsonIgnoreProperties; | ||
|
||
import java.io.Serializable; | ||
|
||
@JsonIgnoreProperties(ignoreUnknown = true) | ||
public class Account | ||
implements Serializable | ||
{ | ||
private String accountRS; | ||
private String balanceNQT; | ||
private String forgedBalanceNQT; | ||
|
||
private long requestProcessingTime; | ||
|
||
public String getAccountRS() | ||
{ | ||
return accountRS; | ||
} | ||
|
||
public String getBalanceNQT() | ||
{ | ||
return balanceNQT; | ||
} | ||
|
||
public String getForgedBalanceNQT() | ||
{ | ||
return forgedBalanceNQT; | ||
} | ||
|
||
public long getRequestProcessingTime() | ||
{ | ||
return requestProcessingTime; | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
src/main/java/burstcoin/jminer/core/network/model/AccountsWithRewardRecipient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016 by luxe - https://github.com/de-luxe - BURST-LUXE-RED2-G6JW-H4HG5 | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software | ||
* and associated documentation files (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, publish, distribute, | ||
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software | ||
* is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies | ||
* or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
*/ | ||
|
||
package burstcoin.jminer.core.network.model; | ||
|
||
|
||
import java.io.Serializable; | ||
import java.util.List; | ||
|
||
public class AccountsWithRewardRecipient | ||
implements Serializable | ||
{ | ||
private List<String> accounts; | ||
|
||
private long requestProcessingTime; | ||
|
||
public List<String> getAccounts() | ||
{ | ||
return accounts; | ||
} | ||
|
||
public long getRequestProcessingTime() | ||
{ | ||
return requestProcessingTime; | ||
} | ||
} |
44 changes: 44 additions & 0 deletions
44
src/main/java/burstcoin/jminer/core/network/model/RewardRecipient.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* The MIT License (MIT) | ||
* | ||
* Copyright (c) 2016 by luxe - https://github.com/de-luxe - BURST-LUXE-RED2-G6JW-H4HG5 | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software | ||
* and associated documentation files (the "Software"), to deal in the Software without restriction, | ||
* including without limitation the rights to use, copy, modify, merge, publish, distribute, | ||
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software | ||
* is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all copies | ||
* or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING | ||
* BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, | ||
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
*/ | ||
|
||
package burstcoin.jminer.core.network.model; | ||
|
||
import java.io.Serializable; | ||
|
||
public class RewardRecipient | ||
implements Serializable | ||
{ | ||
// accountId of reward recipient | ||
private String rewardRecipient; | ||
|
||
private long requestProcessingTime; | ||
|
||
public String getRewardRecipient() | ||
{ | ||
return rewardRecipient; | ||
} | ||
|
||
public long getRequestProcessingTime() | ||
{ | ||
return requestProcessingTime; | ||
} | ||
} |
Oops, something went wrong.